-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (40 loc) · 1.48 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
from setuptools import setup
with open('README.md', 'r') as fd:
long_description = fd.read()
setup(name="tracklist2playlist",
install_requires=[
"spotipy",
"requests",
"bs4",
"click",
],
description="converts the tracklists to spotify playlists",
version="0.3",
author="Rohit Patil",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://www.github.com/raprocks/tracklist2playlist",
package_dir={"tracklist2playlist": "tracklist2playlist",
"tracklist2playlist_sources": "tracklist2playlist_sources/"
},
packages=['tracklist2playlist'],
package_data={"tracklist2playlist": ["tracklist2playlist_sources/*"]},
entry_points={
"console_scripts": [
"t2t = tracklist2playlist.main:main", ]
},
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Multimedia :: Sound/Audio",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
]
)