-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
47 lines (41 loc) · 1.29 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import pathlib
from setuptools import find_packages, setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
install_requires = [
"requests==2.25.1",
"beautifulsoup4==4.9.3",
"google_api_python_client==2.6.0",
"pytest==6.2.4",
"python-dotenv==0.17.1",
"python_dateutil==2.8.1",
"spotipy==2.18.0",
"youtube_title_parse==1.0.0",
"lxml==4.6.3"
]
tests_require = ["pytest==6.0.1"]
# This call to setup() does all the work
setup(
name="music_metadata_extractor",
version="1.4.0",
description=
"Fetch music metadata from common Music APIs for a variety of data sources",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/lttkgp/metadata-extractor",
author="lttkgp",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
include_package_data=True,
install_requires=install_requires,
tests_require=tests_require,
entry_points={"console_scripts": []},
)