aboutsummaryrefslogtreecommitdiffstats
path: root/release/setup.py
blob: b8eb6eecaa3b1247f8016d305e5b6ece51275209 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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.8",
        "virtualenv>=14.0.5, <15.1",
        "wheel>=0.29.0, <0.30",
        "six>=1.10.0, <1.11",
        "pysftp>=0.2.8, !=0.2.9, <0.3",
    ],
    entry_points={
        "console_scripts": [
            "rtool=rtool:cli",
        ],
    },
)