-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 782 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 782 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
#!/usr/bin/env python
import setuptools
_locals = {}
with open("certminder/_version.py", "r") as fp:
exec(fp.read(), None, _locals)
version = _locals["__version__"]
setuptools.setup(
name = "certminder",
version = version,
author = "Jayson Larose",
author_email = "jayson@interlaced.org",
url = "https://github.com/jaysonlarose/certminder",
description = "Certificate Minder",
download_url = f"https://github.com/jaysonlarose/certminder/releases/download/{version}/certminder-{version}.tar.gz",
packages = ['certminder'],
install_requires = [
'cryptography',
'pyOpenSSL',
'pytz',
'pyyaml',
],
entry_points = {
'console_scripts': [
'certminder=certminder:certminder_main',
'catcert=certminder:catcert_main',
],
},
)