-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
31 lines (30 loc) · 929 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
import setuptools
setuptools.setup(
name="nts-everdrone",
version="1.3.3",
author="Giorgio Tropiano",
author_email="[email protected]",
description="NTS Radio downloader tool",
long_description=open('readme.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/everdrone/nts",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
license='MIT',
entry_points={'console_scripts': ['nts=nts.cli:main']},
install_requires=[
'yt-dlp==2024.7.25',
'beautifulsoup4==4.9.3',
'mutagen==1.45.1',
'requests==2.32.2',
'cssutils==2.7.1',
'ffmpeg-python==0.2.0',
'music-tag==0.4.3',
'pillow==10.4.0',
],
python_requires='>=3.7.5',
)