-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
64 lines (54 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
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/env python
#
# Author: Sreejith Kesavan <[email protected]>
#
# Description: Gevent based Asynchronous WebSocket Server with HTTP forwarder APIs
import ConfigParser
from setuptools import setup, find_packages
tests_require = [
'nose >= 1.3.7',
'mock >= 1.3.0',
'coverage >= 4.0.3'
]
install_requires = [
'gevent >= 1.1.1',
'gunicorn >= 19.4.5',
'Flask-Sockets >= 0.2.0',
'flask >= 0.10.1',
'requests >= 2.9.1',
'python-dateutil >= 2.5.3'
]
def get_readme():
with open('README.rst') as readme:
return readme.read()
setup(
name='wsnotifier',
description='Gevent based Asynchronous WebSocket Server with HTTP APIs.',
long_description=get_readme(),
version='1.0.4',
keywords='websocket http ws server',
author='Sreejith Kesavan',
author_email='[email protected]',
packages=find_packages(exclude=('tests', 'tests.*')),
entry_points={
'console_scripts': ['wsnotifier = wsnotifier.notifier:run_wsnotifier_with_default_config']
},
include_package_data=True,
install_requires=install_requires,
tests_require=tests_require,
test_suite='nose.collector',
zip_safe=True,
platforms=['any'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities'
]
)