-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
33 lines (29 loc) · 895 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
#!/usr/bin/env python3
"""The setup script."""
import setuptools
requirements = [
"Flask~=1.0",
"requests~=2.0",
]
packages = setuptools.find_packages(where="./", include=["powerdns_auth_proxy"])
if not packages:
raise ValueError("No packages detected.")
setuptools.setup(
name="powerdns-auth-proxy",
version=0.1,
description="Authenticating proxy for PowerDNS's HTTP API",
long_description="",
author="Catalyst OpsDev",
author_email="[email protected]",
url="https://github.com/catalyst/powerdns-auth-proxy",
packages=packages,
install_requires=requirements,
zip_safe=False,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)