mitmproxy/release/setup.py

19 lines
357 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-11-25 15:46:49 +00:00
"twine>=1.6.5, <1.9",
"pysftp==0.2.8",
2016-12-11 22:07:47 +00:00
"cryptography>=1.6, <1.7",
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
],
},
)