forked from BasioMeusPuga/twitchy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (33 loc) · 1.24 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
import sys
from setuptools import setup
MAJOR_VERSION = '3'
MINOR_VERSION = '4'
MICRO_VERSION = '0'
VERSION = "{}.{}.{}".format(MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION)
if sys.argv[-1] == 'test':
from twitchy import twitchy_config
twitchy_config.ConfigInit(True)
setup(name='twitchy',
version=VERSION,
description="Command line streamlink wrapper for twitch.tv",
url='https://github.com/BasioMeusPuga/twitchy',
author='BasioMeusPuga',
author_email='[email protected]',
license='GPLv3',
packages=['twitchy'],
classifiers=[
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Development Status :: 5 - Production/Stable',
'Topic :: Multimedia :: Video :: Display'
],
zip_safe=False,
entry_points={'console_scripts': ['twitchy = twitchy.__main__:main']},
platforms='any')