-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 818 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 818 Bytes
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
from setuptools import setup
from tsproxy.version import version
install_requires = ['uvloop', 'requests', 'async_timeout', 'aiohttp>=2.3, <3.0', 'pyyaml', 'psutil', 'shadowsocks>=3.0', 'dnspython3']
setup(
name='PyTools',
version=version,
packages=['tsproxy', 'pyclda', 'simcity'],
url='',
license='Apache-2.0',
install_requires=install_requires,
package_data={
'tsproxy': ['conf/router.yaml', 'conf/ss-proxy-logging.conf', 'conf/tsproxy.conf'],
'simcity': ['conf/simcity_conf.json', 'conf/simcity_logging.conf']
},
entry_points="""
[console_scripts]
tsproxy = tsproxy.shell:main
pyclda = pyclda:main
schelp = simcity.shell:main
""",
author='taige',
author_email='hongqiang.wu@gmail.com',
description='Python Tools Collection'
)