forked from mnot/nbhttp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 888 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
#!/usr/bin/env python
from distutils.core import setup
setup(name='nbhttp',
version='0.7.3',
description='Non-blocking HTTP components',
author='Mark Nottingham',
author_email='mnot@mnot.net',
url='http://github.com/mnot/nbhttp/',
download_url='http://github.com/mnot/nbhttp/tarball/nbhttp-0.7.3',
packages=['nbhttp'],
package_dir={'nbhttp': 'src'},
scripts=['scripts/proxy.py'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: Proxy Servers',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)