-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 1.05 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='twitchy-term',
version='1.0.1',
description='A terminal tool for browsing/streaming on Twitch.tv.',
long_description=open('README.rst').read(),
url='https://github.com/Andy-Au/twitchy-term',
author='Andy Au',
author_email='[email protected]',
license='MIT',
keywords='twitch livestreamer command line interface terminal stream',
classifiers=[
'Intended Audience :: End Users/Desktop',
'Environment :: Console :: Curses',
'Operating System :: POSIX',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Topic :: Multimedia :: Video',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Games/Entertainment',
],
packages=find_packages(),
install_requires=['livestreamer'],
entry_points={
'console_scripts': [
'twitchy-term=twitchyterm.__main__:main',
],
},
)