-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (46 loc) · 1.6 KB
/
setup.py
File metadata and controls
53 lines (46 loc) · 1.6 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
import codecs
import os
from setuptools import setup
version = "0.3.1"
def read(filename):
"""Read and return `filename` in root dir of project and return string"""
dirname = os.path.abspath(os.path.dirname(__file__))
return codecs.open(os.path.join(dirname, filename), "r").read()
install_requirements = read("requirements.txt").split()
long_description = read("README.md")
setup(
name="no-hostingde-api",
version=version,
description="Unofficial Client for Hosting.de API",
url="https://github.com/DimeOne/no-hostingde-api",
author="Dominic S.",
license="MIT",
packages=[
"hostingde",
"hostingde.api",
"hostingde.helpers",
"hostingde.plugins",
"hostingde.plugins.certbot",
],
platforms="any",
install_requires=install_requirements,
long_description=long_description,
long_description_content_type="text/markdown",
keywords="hosting.de dns api client development certbot certbot-dns certbot-dns-plugin",
python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <4",
classifiers=[
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
entry_points={
"certbot.plugins": [
"dns-hostingde = hostingde.plugins.certbot.dns_hostingde:Authenticator"
]
},
)