-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
34 lines (30 loc) · 966 Bytes
/
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
import setuptools
from fmdpy import ART, VERSION, install_requires
with open("README.md", "r") as fh:
long_description = fh.read()
print("Setting up...")
print(ART)
setuptools.setup(
name="fmdpy",
version=VERSION,
author="Rohn Chatterjee",
author_email="rohn.ch@gmail.com",
description="Music Downloader",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Liupold/fmdpy",
license='GPLv3',
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=install_requires,
entry_points = {
'console_scripts': ['fmdpy=fmdpy.__main__:fmdpy'],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable"
],
python_requires='>=3.8',
)