mitmproxy/setup.py

21 lines
427 B
Python
Raw Normal View History

2016-02-11 17:51:47 +00:00
from setuptools import setup
2015-11-29 01:46:08 +00:00
setup(
name='mitmproxy-rtool',
2016-02-11 17:51:47 +00:00
version="1.0",
py_modules=["rtool"],
2015-11-29 01:46:08 +00:00
install_requires=[
2016-02-06 00:22:27 +00:00
"click>=6.2, <7.0",
2016-02-11 17:51:47 +00:00
"twine>=1.6.5, <1.7",
"virtualenv>=14.0.5, <14.1",
"wheel>=0.29.0, <0.30",
"six>=1.10.0, <1.11",
"pysftp>=0.2.8, <0.3",
2015-11-29 01:46:08 +00:00
],
entry_points={
2016-02-11 17:51:47 +00:00
"console_scripts": [
"rtool=rtool:cli",
2015-11-29 01:46:08 +00:00
],
},
)