-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
28 lines (27 loc) · 977 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
#!/usr/bin/env python
from distutils.core import setup
from httpproxy import __version__
setup(
name='django-http-proxy',
version=__version__,
description='A simple HTTP proxy for the Django framework.',
url='https://github.com/beck/django-http-proxy',
author='Yuri van der Meer',
author_email='django-http-proxy@yvandermeer.net',
packages=['httpproxy'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)