-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (31 loc) · 1000 Bytes
/
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
from setuptools import setup, find_packages
exec(open("./bigacme/version.py").read())
setup(
name="bigacme",
author="Magnus Watn",
description="An ACME client for F5 Big-IP",
long_description="Command-line program for installing and renewing certificates from an ACME CA on a F5 Big-IP",
version=__version__,
license="MIT",
packages=find_packages(),
install_requires=[
"attrs",
"click>=7.0",
"bigsuds",
"josepy",
"acme>=0.22.0",
"cryptography",
"PyOpenSSL",
],
entry_points={"console_scripts": ["bigacme = bigacme.main:cli"]},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Security",
"Topic :: System :: Systems Administration",
],
)