forked from deepjyoti30/ytmdl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·34 lines (31 loc) · 1003 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
#!/usr/bin/env python3
"""Setup ytmdl."""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
if __name__ == '__main__':
setuptools.setup(
name="ytmdl",
version="0.2-r7",
author="Deepjyoti Barman",
author_email="[email protected]",
description="Youtube Music Downloader",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/deepjyoti30/ytmdl",
packages=setuptools.find_packages(),
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
scripts=['bin/ytmdl'],
install_requires=[
'youtube_dl==2018.09.10',
'mutagen==1.40.0',
'itunespy==1.5.5',
'requests==2.18.4',
'colorama==0.3.9',
'bs4==0.0.1'
]
)