-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (33 loc) · 1.61 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
#!/usr/bin/env python
from setuptools import setup
import rainbow
setup(name='pyrainbow',
version=rainbow.__version__,
description=rainbow.__doc__,
author=rainbow.__author__,
author_email=rainbow.__email__,
url='https://github.com/bqlabs/rainbow',
download_url='https://pypi.python.org/pypi/pyrainbow',
license=rainbow.__license__,
packages=['rainbow'],
package_data={'rainbow': ['index.html', 'rainbow.service']},
install_requires=['nose>=1.3.1',
'paste>=2.0.2',
'pyzmq>=15.0.0',
'gevent>=1.0.2',
'wsaccel>=0.6.2',
'gevent-websocket>=0.9.5'],
extras_require=dict(develop=['nose>=1.3.1']),
data_files=[('/etc/avahi/services', ['rainbow/rainbow.service'])],
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Server',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Programming Language :: Python :: 2.7']
)