-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
64 lines (49 loc) · 1.4 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
#!/usr/bin/env python3
import itertools
from setuptools import setup, find_packages
with open('README.md', 'r') as fi:
long_description = fi.read()
EXTRAS = {
'record': [
'streamlink>=5.5.0',
'parse>=1.19.0'
],
'offset': [
'praat-parselmouth>=0.4'
],
'mute': [
'spleeter>=2.3.0'
]
}
EXTRAS['all'] = list(itertools.chain.from_iterable(EXTRAS.values()))
setup(
name='tdh-twitch-utils',
version='1.7.3',
author='Dmitry Karikh',
author_email='[email protected]',
description='Record, concatenate and synchronize Twitch live streams',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/TheDrHax/Twitch-Utils',
install_requires=[
'requests',
'python-dateutil',
'docopt>=0.6.2',
],
extras_require=EXTRAS,
packages=find_packages(),
entry_points='''
[console_scripts]
twitch_utils=twitch_utils:main
''',
classifiers=[
'Environment :: Console',
'Programming Language :: Python :: 3.6',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'Topic :: Multimedia :: Video :: Conversion',
'Topic :: Utilities'
]
)