-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (45 loc) · 1.16 KB
/
setup.py
File metadata and controls
51 lines (45 loc) · 1.16 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import setup, find_packages
from codecs import open
from os import path
setup(
name='debugproxy',
version='0.0.1',
description='debug proxy server',
long_description='no long description',
packages=find_packages(exclude=['tests']),
install_requires=[
# Proxy Server
'mitmproxy',
'aioredis',
'rratelimit',
# Proxy Web
'gunicorn',
'psycopg2',
'Flask',
'Flask-Script',
'Flask-Login',
'Flask-Migrate',
'Flask-SQLAlchemy',
'Flask-WTF',
'Flask-User',
'requests',
# Development
'pytest',
'pytest-flask',
'pytest-cov',
'testfixtures',
'Flask-Assets',
'webassets',
'cssmin'
],
entry_points={
'console_scripts': [
'proxyserver=proxyserver:proxyserver',
'proxywebsocket=proxyserver:proxywebsocket',
'proxyworker=proxyserver:proxyworker',
'status=monitoring:print_stats',
'munin=monitoring:munin_stats',
'generate-certificates=proxyserver:generate_certificates'
],
}
)