-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 1016 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (24 loc) · 1016 Bytes
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_twisted',
version='0.2.0',
author='Michael Carter',
author_email='CarterMichael@gmail.com',
url='http://www.orbited.org',
license='MIT License',
description='An implemention of the Comet Session protocol specification for twisted: http://orbited.org/blog/files/cps.html',
long_description='This csp implementation provides a twisted-style Port object that allows you to use existing Twisted Protocols and Factories, but listen to connections from a browser.',
packages= find_packages(),
zip_safe = True,
install_requires = [],
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)