forked from play-co/csp_eventlet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (24 loc) · 1.01 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
from setuptools import setup, find_packages
import os, sys
setup(
name='csp_eventlet',
version='0.5.1',
author='Michael Carter',
author_email='[email protected]',
url='http://github.com/mcarter/csp_eventlet',
license='MIT License',
description='An implemention of the Comet Session protocol specification for eventlet: http://orbited.org/blog/files/cps.html',
long_description='This csp implementation provides a socket object that allows you to use existing eventlet network code, but listen for csp connections in addition to tcp/ip.',
packages= find_packages(),
zip_safe = True,
install_requires = [ 'eventlet' ],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)