forked from TronPaul/TwitchHQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (36 loc) · 1.21 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
import sys
import setuptools
setuptools.setup(
license="MIT",
name="TwitchHQ",
version='1.0.0',
keywords=["twitchtv","twitch","api","client","justintv","justin"],
description="Python Library for Twitch.tv",
long_description=open("README.md").read(),
author="Mark McGuire",
author_email="???",
url="https://github.com/TronPaul/TwitchHQ",
download_url="https://github.com/TronPaul/TwitchHQ/archive/master.zip",
platforms=["any"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
entry_points={
'console_scripts': [
'twitch = twitchapi.cli:main',
]
},
install_requires=['httplib2'],
packages=setuptools.find_packages(),
zip_safe=True
)