You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
529 B
22 lines
529 B
#!/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', |
|
] |
|
)
|
|
|