-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
42 lines (34 loc) · 906 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
34
35
36
37
38
39
40
41
42
from setuptools import setup
import os.path
base_dir = os.path.dirname(__file__)
about = {}
with open(os.path.join(base_dir, "rootfetch", "__about__.py")) as f:
exec(f.read(), about)
setup(
name = "rootfetch",
description = "command line program for downloading various certificate root stores",
version = about["__version__"],
license = about["__license__"],
author = about["__author__"],
author_email = about["__email__"],
keywords = "python ca root certificates",
install_requires = [
"beautifulsoup4",
"semver>=2.7,<3",
"sh>=1.12,<2",
"pyasn1>=0.4.4"
],
packages = [
"rootfetch"
],
package_data = {
"rootfetch": [
"bin/extract-nss-root-certs*",
],
},
entry_points = {
'console_scripts': [
'rootfetch = rootfetch.__main__:main',
]
}
)