-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
44 lines (41 loc) · 1.38 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
from setuptools import setup
from setuptools import find_packages
version = '0.4.0'
with open('README.md') as f:
readme = f.read()
setup(
name='certbot-dns-cpanel',
version=version,
description='certbot plugin to allow acme dns-01 authentication & installation of a name managed in cPanel.',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/badjware/certbot-dns-cpanel',
author='Massaki Archambault',
author_email='[email protected]',
license='Apache Licence 2.0',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Plugins',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
],
keywords='certbot letsencrypt cpanel dns-01 plugin',
install_requires=[
'certbot',
'zope.interface',
],
entry_points={
'certbot.plugins': [
'cpanel = certbot_dns_cpanel.dns_cpanel:CpanelConfigurator',
],
},
)