forked from LifeActor/ykdl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
93 lines (83 loc) · 2.89 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
86
87
88
89
90
91
92
93
#!/usr/bin/env python3
from setuptools import setup
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.')
def find_packages(*tops):
packages = []
for d in tops:
for root, dirs, files in os.walk(d, followlinks=True):
if '__init__.py' in files:
packages.append(root)
return packages
# memo: pycryptodome is not being used now
REQ = ['m3u8>=1.0.0', 'jsengine>=1.0.5']
EXT = {
'proxy': ['ExtProxy'],
'rangefetch': ['urllib3'],
'br': ['BrotliCFFI'],
'js': ["QuickJS; os_name != 'nt'",
"PyChakra>=2.2.0; os_name == 'nt' and platform_version < '6.2'"],
'color': ["colorama; os_name == 'nt'"]
}
EXT['all-js'] = sum((v for k,v in EXT.items() if k != 'js'), [])
EXT['all'] = EXT['all-js'] + EXT['js']
EXT['net'] = EXT['proxy'] + EXT['rangefetch'] + EXT['br']
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('ykdl', 'cykdl'),
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']
},
)