-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·40 lines (37 loc) · 1.36 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
# Bootstrap setuptools
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name = 'flup',
version = '1.0.3',
packages = find_packages(),
zip_safe = True,
entry_points = """
[paste.server_runner]
ajp = flup.server.paste_factory:run_ajp_thread
fcgi = flup.server.paste_factory:run_fcgi_thread
scgi = flup.server.paste_factory:run_scgi_thread
ajp_thread = flup.server.paste_factory:run_ajp_thread
fcgi_thread = flup.server.paste_factory:run_fcgi_thread
scgi_thread = flup.server.paste_factory:run_scgi_thread
ajp_fork = flup.server.paste_factory:run_ajp_fork
fcgi_fork = flup.server.paste_factory:run_fcgi_fork
scgi_fork = flup.server.paste_factory:run_scgi_fork
""",
author = 'Allan Saddi',
author_email = 'allan@saddi.com',
description = 'Random assortment of WSGI servers',
license = 'BSD',
url='http://www.saddi.com/software/flup/',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Server',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)