-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (22 loc) · 818 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"""
This file is automatically generated by the autogen package.
Please edit the marked area only. Other areas will be
overwritten when autogen is rerun.
"""
from setuptools import setup
params = dict(
name='mproxy',
description='Mproxy',
version='0.0.7',
url='https://github.com/simonm3/mproxy.git',
install_requires=['fabric', 'pandas', 'stem', 'apache_libcloud',
'requests', 'beautifulsoup4', 'googletrans'],
packages=['mproxy', 'mproxy.proxy', 'mproxy.source', 'mproxy.utils'],
package_data={
'mproxy/proxy': ['babies-first-names-top-100-girls.csv', 'tinyproxy.conf']},
include_package_data=True,
py_modules=[],
scripts=None)
########## EDIT BELOW THIS LINE ONLY ##########
########## EDIT ABOVE THIS LINE ONLY ##########
setup(**params)