forked from rfk/proxylet
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (31 loc) · 766 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
27
28
29
30
31
32
33
34
35
36
#
# This is the proxylet setuptools script.
# Originally written by Ryan Kelly, 2007.
#
# This sript is placed in the public domain.
#
from distutils.core import setup
try:
import proxylet
except ImportError:
version = "0.0.0"
long_desc = ""
else:
version = proxylet.__version__
long_desc = proxylet.__doc__
del proxylet
setup(name='proxylet',
version=version,
description='Lightweight HTTP reverse proxy built on eventlet',
long_description=long_desc,
classifiers = [
],
keywords = "HTTP reverse proxy",
author = "Ryan Kelly",
author_email = "[email protected]",
packages = ['proxylet'],
license = "PSF",
install_requires = [
'Paste','eventlet'
],
)