-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.21 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
import setuptools
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="spotifyrehydrator",
version="0.2.0",
author="Nina Di Cara",
author_email="ninadicara@gmail.com",
description="A convenience package for creating datasets of track features from self-requested Spotify data.",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/DynamicGenetics/Spotify-Rehydrator",
project_urls={
"Bug Tracker": "https://github.com/DynamicGenetics/Spotify-Rehydrator/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6",
install_requires=[
"spotipy >= 2.16", # https://github.com/plamere/spotipy
"alive_progress>=1.6", # https://github.com/rsalmei/alive-progress
"pandas>=1.2", # https://github.com/pandas-dev/pandas
"simplejson>=3.17", # https://github.com/simplejson/simplejson
],
)