-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 938 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 938 Bytes
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
from setuptools import setup, find_packages
description = """
This is our command line client for Caramel. It generates keys, requests and
updates the certificates.
It's using the `openssl` command line client in order to reduce the amount of
dependencies.
"""
version = "1.5.3"
setup(
name="caramel-client",
version=version,
description="caramel-client: A python client for the Caramel CA system.",
packages=find_packages(),
scripts=['caramel-client'],
long_description=description,
classifiers=[
"Programming Language :: Python",
],
author="D.S. Ljungmark",
author_email="spider@modio.se",
url="https://github.com/ModioAB/caramel-client",
download_url="https://github.com/ModioAB/caramel-client/releases/tag/%s" % version, # noqa
keywords="caramel ssl tls certificates x509 ca cert",
include_package_data=True,
zip_safe=True,
install_requires=['requests'],
)