forked from LifeActor/ykdl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
85 lines (76 loc) · 2.48 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/usr/bin/env python3
from setuptools import setup, find_packages
import os
import re
def read_file(*paths):
with open(os.path.join(here, *paths), 'r', encoding='utf-8') as fp:
return fp.read()
def get_version():
content = read_file('ykdl', 'version.py')
version_match = re.search('^__version__ = [\'"]([^\'"]+)', content, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError('Unable to find version string.')
# memo: pycryptodome is not being used now
REQ = [
'm3u8>=1.0.0',
'jsengine>=1.0.5',
"colorama;os_name=='nt'",
]
EXT = {
'proxy': ['ExtProxy'],
'br': ['BrotliCFFI'],
}
EXT['net'] = sum(EXT.values(), [])
EXT['js'] = ['quickjs']
EXT['all'] = list(set(sum((EXT.values()), [])))
here = os.path.abspath(os.path.dirname(__file__))
README = read_file('README.rst')
CHANGES = read_file('CHANGELOG.rst')
setup(
name = 'ykdl',
version = get_version(),
author = 'Zhang Ning',
author_email = '[email protected]',
maintainer = 'SeaHOH',
maintainer_email = '[email protected]',
url = 'https://github.com/SeaHOH/ykdl',
license = 'MIT',
description = 'a video downloader written in Python',
long_description = README + '\n\n' + CHANGES,
keywords = 'video download youku acfun bilibili',
packages = find_packages(here),
install_requires = REQ,
extras_require = EXT,
platforms = 'any',
zip_safe = True,
package_data = {
'ykdl': ['extractors/*.js', 'extractors/*/*.js'],
},
python_requires = '>=3.5',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Multimedia',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Video',
'Topic :: Utilities'
],
entry_points = {
'console_scripts': ['ykdl=cykdl.__main__:main']
},
)