-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
63 lines (57 loc) · 1.74 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
The setup file for installing the library
"""
import os
from setuptools import find_packages
from setuptools import setup
from twitchstream import __version__ as VERSION
version = VERSION
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
except IOError:
README = CHANGES = ''
install_requires = [
'numpy',
]
tests_require = [
'mock',
'pytest',
'pytest-cov',
'pytest-pep8',
]
setup(
name="python-twitch-stream",
version=version,
description="An interface to the Twitch website, to interact with "
"their video and chat",
long_description="\n\n".join([README, CHANGES]),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Topic :: Communications :: Chat :: Internet Relay Chat",
"Topic :: Multimedia :: Video"
],
keywords="twitch, stream, video, chat",
author="Jonas Degrave",
author_email="[email protected]",
url="https://github.com/317070/python-twitch-stream",
license="MIT",
packages=find_packages(),
include_package_data=False,
zip_safe=False,
install_requires=install_requires,
extras_require={
'testing': tests_require,
},
)