forked from abourget/pyramid_socketio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (40 loc) · 1.43 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
import os
import sys
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = [
'pyramid',
'gevent',
'gevent-socketio',
'gevent-websocket',
'greenlet',
]
setup(name='pyramid_socketio',
version='0.8',
description='Gevent-based Socket.IO pyramid integration and helpers',
long_description="DOCUMENTATION: https://github.com/abourget/pyramid_socketio\n\n---\n\n" + CHANGES,
classifiers=[
"Programming Language :: Python",
"Framework :: Pylons",
"Framework :: BFG",
"Topic :: Internet :: WWW/HTTP",
],
author='Alexandre Bourget',
author_email='[email protected]',
url='https://github.com/abourget/pyramid_socketio',
keywords='web wsgi pylons pyramid websocket python gevent socketio socket.io',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
entry_points="""\
[console_scripts]
socketio-serve-reload = pyramid_socketio.servereload:socketio_serve_reload
socketio-serve = pyramid_socketio.serve:socketio_serve
[paste.server_factory]
sioserver = pyramid_socketio.pasteserve:server_factory
sioserver_patched = pyramid_socketio.pasteserve:server_factory_patched
""",
)