forked from momyc/gevent-fastcgi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 882 Bytes
/
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 re
__version__ = re.search(r'__version__\s*=\s*\'(.*)\'', file('gevent_fastcgi.py').read()).group(1)
setup(name='gevent-fastcgi',
version=__version__,
description="FastCGI/WSGI server implementation based on gevent library",
long_description='''FastCGI/WSGI server implemented using gevent library.
Supports connection multiplexing. Compatibe with PasteDeploy.''',
keywords='fastcgi gevent wsgi',
author='Alexander Kulakov',
author_email='[email protected]',
url='http://github.com/momyc/gevent-fastcgi',
py_modules=['gevent_fastcgi'],
zip_safe=True,
license='MIT',
install_requires=[
"gevent>=0.13.6"
],
entry_points="""
[paste.server_runner]
fastcgi=gevent_fastcgi:run_server
""",
test_suite="tests",
)