-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (41 loc) · 1.33 KB
/
setup.py
File metadata and controls
42 lines (41 loc) · 1.33 KB
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
from io import open
from setuptools import setup
from sytd import __version__ as version
setup(
name="sytd",
version=version,
url="https://github.com/tomg404/Simple-YouTube-Downloader",
license="MIT",
author="Tom Gaimann",
author_email="tom.gaimann@outlook.com",
description="Simple YouTube Downloader",
long_description="".join(open("README.md", encoding="utf-8").readlines()),
long_description_content_type="text/markdown",
keywords=["gui", "downloader", "youtube", "simple"],
packages=["sytd"],
include_package_data=True,
install_requires=[
"Eel==0.11.0",
"bottle==0.12.18",
"gevent==1.5.0",
"youtube-dl==2020.3.24",
],
python_requires=">=3.5",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
],
entry_points={
"console_scripts": [
"sytd=sytd.__main__:run",
"simple-youtube-downloader=sytd.__main__:run",
],
},
)