-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
51 lines (41 loc) · 1.34 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"""Setup configuration file."""
from setuptools import setup
def readme():
"""Open the readme."""
with open('README.md') as f:
return f.read()
setup(
name='uwsgidns',
version='1.0.1',
description='Dinamically route to localhost request for uWSGI locally subscribed domains.',
long_description=readme(),
url='https://github.com/20tab/uwsgi-local-dns-resolver',
author='Adriano Di Luzio',
author_email='[email protected]',
packages=['uwsgidns'],
install_requires=[
'dnslib',
],
# test_suite='nose.collector',
# tests_require=['nose'],
scripts=['bin/uwsgidns'],
keywords=["uwsgi", "dns", "uwsgidns", "localhost"],
license='MIT',
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 6 - Mature",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: Unix",
"Topic :: System :: Operating System",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: Utilities"
],
zip_safe=False,
include_package_data=True,
)