forked from runfalk/certbot-dns-loopia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (55 loc) · 1.65 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
52
53
54
55
56
57
58
59
"""
Setup for certbot-dns-loopia.
"""
# pylint: disable=consider-using-with
from setuptools import setup
try:
LONG_DESC = open("README.md", encoding="utf-8").read()
except FileNotFoundError:
print("Skipping README.md for long description as it was not found")
LONG_DESC = None
setup(
name="certbot-dns-loopia",
version="1.0.1",
description="Loopia DNS authentication plugin for Certbot",
long_description=LONG_DESC,
long_description_content_type="text/markdown",
license="BSD",
author="Andreas Runfalk",
author_email="[email protected]",
url="https://www.github.com/runfalk/certbot-loopia",
py_modules=["certbot_dns_loopia"],
install_requires=[
"acme>=1.8.0",
"certbot>=1.7.0",
"loopialib>=0.2.0",
"tldextract>=3.3.0",
],
extras_require={
"dev": [
"pytest",
"wheel",
"pylint==2.13.9",
"mypy==0.961",
],
},
entry_points={
"certbot.plugins": [
"dns-loopia = certbot_dns_loopia:LoopiaAuthenticator",
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
],
)