forked from shadowsocks/ChinaDNS-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 863 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
30
31
32
33
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
setup(
name="chinadns",
version="0.2.3",
license='MIT',
description="A DNS forwarder that ignore incorrect responses",
author='clowwindy',
author_email='[email protected]',
url='https://github.com/clowwindy/ChinaDNS',
packages=['chinadns'],
package_data={
'chinadns': ['README.rst', 'LICENSE', 'config.json']
},
install_requires=[
'shadowsocks>=2.2'
],
entry_points="""
[console_scripts]
chinadns = chinadns.dnsrelay:main
""",
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: Proxy Servers',
],
long_description=long_description,
)