-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
38 lines (32 loc) · 943 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
34
35
36
37
from setuptools import setup
from setuptools import find_packages
VERSION = "0.0.1.dev0"
INSTALL_REQUIRES = [
"zope.interface==4.6.0",
"certbot",
"aliyun-python-sdk-alidns",
"aliyun-python-sdk-core-v3"
]
setup(
name="certbot-dns-aliyun",
version=VERSION,
description="Aliyun DNS Authenticator plugin for Certbot",
python_requires="==3.6.*",
author_email="[email protected]",
classifiers=[
"Programming Language :: Python :: 3.6",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Security",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
],
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
entry_points={
'certbot.plugins': [
'dns-aliyun = certbot_dns_aliyun.dns_aliyun:Authenticator',
],
},
)