-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (33 loc) · 931 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
35
36
37
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
packages = [
'dnsproxy',
'dnsproxy.lib'
]
requires = open("requirements.txt").read().split()
setup(
name='dnsproxy',
version='0.0.1',
description='DNS to DNS-over-TLS Proxy',
packages=find_packages(),
package_dir={'dnsproxy': 'dnsproxy'},
include_package_data=True,
install_requires=requires,
zip_safe=False,
entry_points={
'console_scripts': [
'dnsproxy = dnsproxy.dnsproxy:main'
]
},
classifiers=(
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
)
)