forked from izrik/pydeproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 666 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
import deproxy
setup(
name='deproxy',
version=deproxy.__version__,
packages=['deproxy', ],
license='MIT License',
long_description=open('README.rst').read(),
author='izrik',
author_email='izrik@yahoo.com',
url='https://github.com/izrik/deproxy',
description='Python library for testing HTTP proxies.',
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
),
)