1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
from setuptools import setup setup( name='mitmproxy-rtool', version="1.0", py_modules=["rtool"], install_requires=[ "click>=6.2, <7.0", "twine>=1.6.5, <1.9", "pysftp==0.2.8", "cryptography>=1.6, <1.7", ], entry_points={ "console_scripts": [ "rtool=rtool:cli", ], }, )