forked from d0u9/youtube-dl-webui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 770 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
#!/usr/bin/env python
# -*- coding: utf8 -*-
from setuptools import setup
DESCRIPTION = 'webui for youtube-dl'
LONG_DESCRIPTION = 'Another webui for youtube-dl, powered by youtube-dl'
setup (
name='youtube_dl_webui',
version='rolling',
packages=['youtube_dl_webui'],
license='GPL-2.0',
author='d0u9, yuanyingfeiyu',
author_email='[email protected]',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
include_package_data=True,
zip_safe=False,
install_requires=[
'Flask>=0.2',
'youtube-dl',
],
entry_points={
'console_scripts': [
'youtube-dl-webui = youtube_dl_webui:main'
]
},
)