mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-27 02:24:18 +00:00
18 lines
330 B
Python
18 lines
330 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='mitmproxy-rtool',
|
|
version='1.0',
|
|
py_modules=['rtool'],
|
|
install_requires=[
|
|
'click~=6.2',
|
|
'twine~=1.6.4',
|
|
'virtualenv~=13.1.2',
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'rtool=rtool:cli',
|
|
],
|
|
},
|
|
)
|