forked from play-co/csp_eventlet
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 1.01 KB
/
Copy pathsetup.py
File metadata and controls
27 lines (24 loc) · 1.01 KB
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='CarterMichael@gmail.com',
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'
],
)