-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
45 lines (41 loc) · 1.11 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
p_version = "0.3.5"
with open("README.md") as f:
long_description = f.read()
setup(
name="acme-nginx",
version=p_version,
author="Konstantin Shcherban",
author_email="[email protected]",
packages=find_packages(),
url="https://github.com/kshcherban/acme-nginx",
download_url="https://github.com/kshcherban/acme-nginx/tarball/v{0}".format(
p_version
),
license="GPL v3",
description="A simple client/tool for Let's Encrypt or any ACME server that issues SSL certificates.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=[
"tls",
"ssl",
"certificate",
"acme",
"letsencrypt",
"nginx",
"wildcard certificate",
"wildcard",
],
install_requires=[
"pyOpenSSL~=24.0",
"cryptography==41.0.7",
"pycryptodome~=3.14",
"boto3~=1.34",
],
entry_points={
"console_scripts": [
"acme-nginx = acme_nginx.client:main",
]
},
)