-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
44 lines (37 loc) · 1.09 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
from setuptools import setup, find_packages
pkg_name = "syrics"
def read_file(fname):
with open(fname, "r") as f:
return f.read()
requirements = [
"requests",
"spotipy",
"tqdm",
"tinytag",
]
setup(
name=pkg_name,
version="0.0.1.8",
author="Akash R Chandran",
author_email="[email protected]",
description="A command line tool to fetch lyrics from spotify and save it to lrc file. It can fetch both synced and unsynced lyrics from spotify. ",
long_description=read_file("README.md"),
long_description_content_type="text/markdown",
url="https://github.com/akashrchandran/syrics",
install_requires=requirements,
entry_points={
"console_scripts": [
"syrics = syrics:main",
],
},
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)
# rm -f dist/*
# python3 setup.py sdist bdist_wheel
# twine upload dist/*