-
Notifications
You must be signed in to change notification settings - Fork 413
/
setup.py
34 lines (31 loc) · 916 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
34
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
setup(
name="shadowdns",
version="0.1.3",
license='MIT',
description="A DNS forwarder using Shadowsocks as the server",
author='clowwindy',
author_email='[email protected]',
url='https://github.com/clowwindy/shadowdns',
packages=['shadowdns'],
package_data={
'shadowdns': ['README.rst', 'LICENSE', 'config.json']
},
install_requires=[
'shadowsocks==2.0.4'
],
entry_points="""
[console_scripts]
ssdns = shadowdns.dnsrelay:main
""",
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: Proxy Servers',
],
long_description=long_description,
)