forked from zihuaye/3xsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (20 loc) · 979 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
29
from setuptools import setup
setup(
name='3xsd',
version='0.0.26',
description='3xsd is a native epoll server serving TCP/UDP connections, a high performance static web server, a failover dns server, a http-based distributed file server, a load-balance proxy-cache server, and a warp-drive server. Written in python, take the full power of multi-cores.',
url='https://github.com/zihuaye/3xsd',
author='Zihua Ye',
author_email='[email protected] [email protected]',
license='GPLv2',
classifiers=[
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Internet :: Name Service (DNS)',
'Topic :: Internet :: Proxy Servers',
'Topic :: System :: Filesystems',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
],
py_modules=['_3xsd'],
scripts=['3xsd'],
install_requires=['gevent', 'setproctitle', 'psutil', 'dpkt', 'pysendfile', 'python-pytun', 'pyudt4', 'pycrypto', 'python-lzo', 'geoip2']
)