aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 195e0dfe2f72a3dbb4552da7bfe4226e88a41951 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup, find_packages

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.30',
    ],
    entry_points={
        'console_scripts': [
            'rtool=rtool:cli',
        ],
    },
)