-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·45 lines (42 loc) · 1.54 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
#!/usr/bin/env python
from setuptools import setup, find_packages
version = '1.0.0'
setup(
name='certbot-dns-loopia',
version=version,
description='Loopia DNS Authenticator for Certbot',
long_description=open('README.md').read(),
url='https://www.github.com/rgson/certbot-dns-loopia',
author='Robin Gustafsson',
author_email='[email protected]',
license='Apache License 2.0',
packages=find_packages(),
install_requires=open('requirements.txt').readlines(),
entry_points={
'certbot.plugins': [
'dns-loopia = certbot_dns_loopia.dns_loopia:Authenticator',
],
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Plugins',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python',
'Topic :: Internet :: Name Service (DNS)',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
],
)