-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
25 lines (22 loc) · 881 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
import setuptools
from hulusubs_dl import __version__
readme = open('ReadMe.md').read()
history = open('Changelog.md').read()
setuptools.setup(
name="hulusubs_dl", # Replace with your own username
version=__version__.__version__,
author="Xonshiz",
author_email='xonshiz@gmail.com',
url='https://github.com/Xonshiz/Hulu-Subs-Downloader',
download_url='https://github.com/Xonshiz/Hulu-Subs-Downloader/releases/latest',
description="hulusubs_dl is a command line tool to download subtitles from Hulu.",
long_description='{0}\n\n{1}'.format(readme, history),
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=2.6',
)