-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
52 lines (50 loc) · 1.71 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, find_packages
# read README (actually docs/index.rst):
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="serles-acme",
version="1.0",
packages=find_packages(),
python_requires=">=3.6",
scripts=["bin/serles"],
install_requires=[
"Flask",
"Flask-RESTful",
"Flask-SQLAlchemy",
"requests",
"jwcrypto",
"cryptography", # Note: if cryptography<3.1, we also need openssl(1) tool
"dnspython",
# for EJBCABackend:
"requests",
"zeep",
# for docs:
"docutils",
# for bin/serles:
"gunicorn",
],
# metadata to display on PyPI
author="Daten-Verarbeitung-Tirol GmbH",
author_email="[email protected]",
description="""
A tiny ACME (Automatic Certificate Management Environment) Server that
passes actual issuance off to an existing PKI Certificate Authority.
Extensible with plug-ins. Ships with an EJBCA Community backend.
""",
long_description=long_description,
long_description_content_type='text/x-rst',
keywords="pki ejbca acme server certbot",
url="https://github.com/dvtirol/serles-acme",
project_urls={
"Bug Tracker": "https://github.com/dvtirol/serles-acme/issues",
"Documentation": "https://serles-acme.readthedocs.io/",
"Source Code": "https://github.com/dvtirol/serles-acme",
},
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.6",
],
)