Initial release
This commit is contained in:
parent
03fabf16e8
commit
f6ebcd271b
33 changed files with 5028 additions and 0 deletions
22
setup.py
Executable file
22
setup.py
Executable 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',
|
||||
]
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue