Initial release

This commit is contained in:
Rob Glew 2015-11-17 19:27:41 -06:00
parent 03fabf16e8
commit f6ebcd271b
33 changed files with 5028 additions and 0 deletions

22
setup.py Executable file
View file

@ -0,0 +1,22 @@
#!/usr/bin/env python
from distutils.core import setup
setup(name='Pappy',
version='0.0.1',
description='The Pappy Intercepting Proxy',
author='Rob Glew',
author_email='rglew56@gmail.com',
url='https://www.github.com/roglew/pappy-proxy',
packages=['pappy-proxy'],
license='MIT',
install_requires=[
'twisted',
'crochet',
'cmd2',
'service_identity',
'pytest',
'pytest-cov',
'pytest-twisted',
]
)