aboutsummaryrefslogtreecommitdiffstats
path: root/release/setup.py
blob: 9876af0af73b986ec7f495064703c88014042a14 (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.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",
    ],
    entry_points={
        "console_scripts": [
            "rtool=rtool:cli",
        ],
    },
)