forked from uktrade/dns-rewrite-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 868 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
import setuptools
def long_description():
with open('README.md', 'r') as file:
return file.read()
setuptools.setup(
name='dnsrewriteproxy',
version='0.0.16',
author='Department for International Trade',
author_email='[email protected]',
description='A DNS proxy server that conditionally rewrites and filters A record requests',
long_description=long_description(),
long_description_content_type='text/markdown',
url='https://github.com/uktrade/dns-rewrite-proxy',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Topic :: Internet :: Name Service (DNS)',
],
python_requires='>=3.7.0',
py_modules=[
'dnsrewriteproxy',
],
install_requires=[
'aiodnsresolver>=0.0.149',
],
test_suite='test',
)