-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (51 loc) · 1.65 KB
/
setup.py
File metadata and controls
54 lines (51 loc) · 1.65 KB
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
52
53
54
#!/usr/bin/env python
from setuptools import setup
# confused? check setup.cfg
setup(
name="devns",
version="0.5.0",
author="Dave Hayes",
author_email="dwhayes@gmail.com",
description="Pure Python DNS server for developers",
keywords="dns",
license="MIT License",
url="https://github.com/daveisadork/PyDevNS",
package_dir={"devns": "devns"},
entry_points={
"console_scripts": ["devns = devns.cli:main"]
},
zip_safe=True,
packages=["devns"],
install_requires=["future", "six"],
setup_requires=["future", "six"],
tests_require=[
"future",
"mock>=2.0",
"pytest>=2.9,<3",
"pytest-cov>=2.4",
"pytest-runner",
"six",
],
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Console",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: Software Development",
"Topic :: System",
"Topic :: System :: Networking",
"Topic :: Utilities",
],
)