-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
46 lines (42 loc) · 1.73 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
install_reqs = fh.read().split()
setup(
name="vault-certificate-deploy",
version="1.4.2",
packages=find_packages(),
install_requires=install_reqs,
license="GPLv3",
description="System for deploying certificates from Hashicorp Vault server",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
url="https://github.com/rvojcik/vault-certificate-deploy",
author="Robert Vojcik",
author_email="[email protected]",
scripts=[
"scripts/vault-certificate-deploy",
"scripts/vault-certificate-issue-deploy"
],
keywords=['vault_certificate_deploy', 'vault_cert_deploy', 'certificate', 'vault-certificate-deploy', 'vault-cert-deploy', 'hashicorp', 'certificates'],
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: System :: Systems Administration",
"Topic :: Database",
"Topic :: Security",
"Topic :: Security :: Cryptography"
]
)