mitmproxy/release/setup.py

20 lines
406 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-07-26 04:52:34 +00:00
"twine>=1.6.5, <1.8",
2016-07-20 01:09:33 +00:00
"virtualenv>=14.0.5, <15.1",
2016-02-11 17:51:47 +00:00
"wheel>=0.29.0, <0.30",
"pysftp>=0.2.8, !=0.2.9, <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
],
},
)