-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
52 lines (44 loc) · 1.45 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
from setuptools import setup
from setuptools import find_packages
setup(
name='certbot-vault', # Required
version='0.3.8', # Required
description='Certbot plugin to store certificates in Hashicorp Vault',
url='https://github.com/deathowl/certbot-vault-plugin', # Optional
author='Balint Csergo', # Optional
author_email='<[email protected]>', # Optional
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration',
'Topic :: Utilities'
],
packages=find_packages(), # Required
include_package_data=True,
install_requires=[
'acme>=0.22.0',
'certbot>=0.22.0',
'PyOpenSSL',
'setuptools',
'zope.component',
'zope.event',
'zope.interface',
'hvac'
],
entry_points={
'certbot.plugins': [
'vault = certbot_vault.plugin:VaultInstaller',
],
}
)