-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
87 lines (85 loc) · 3.38 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
from setuptools import find_packages, setup
setup(
name='ipahealthcheck',
version='0.17',
namespace_packages=['ipahealthcheck', 'ipaclustercheck'],
package_dir={'': 'src'},
# packages=find_packages(where='src'),
packages=[
'ipahealthcheck.core',
'ipahealthcheck.dogtag',
'ipahealthcheck.ds',
'ipahealthcheck.ipa',
'ipahealthcheck.meta',
'ipahealthcheck.system',
'ipaclustercheck.core',
'ipaclustercheck.ipa',
],
entry_points={
# creates bin/ipahealthcheck
'console_scripts': [
'ipa-healthcheck = ipahealthcheck.core.main:main',
'ipa-clustercheck = ipaclustercheck.core.main:main',
],
# subsystem registries
'ipahealthcheck.registry': [
'ipahealthcheck.dogtag = ipahealthcheck.dogtag.plugin:registry',
'ipahealthcheck.ipa = ipahealthcheck.ipa.plugin:registry',
'ipahealthcheck.meta = ipahealthcheck.meta.plugin:registry',
'ipahealthcheck.ds = ipahealthcheck.ds.plugin:registry',
'ipahealthcheck.system = ipahealthcheck.system.plugin:registry'
],
# plugin modules for ipahealthcheck.meta registry
'ipahealthcheck.meta': [
'meta = ipahealthcheck.meta.core',
'services = ipahealthcheck.meta.services',
],
# plugin modules for ipahealthcheck.ipa registry
'ipahealthcheck.ipa': [
'ipacerts = ipahealthcheck.ipa.certs',
'ipadna = ipahealthcheck.ipa.dna',
'ipadns = ipahealthcheck.ipa.idns',
'ipafiles = ipahealthcheck.ipa.files',
'ipahost = ipahealthcheck.ipa.host',
'ipakdc = ipahealthcheck.ipa.kdc',
'ipaproxy = ipahealthcheck.ipa.proxy',
'ipameta = ipahealthcheck.ipa.meta',
'ipanss = ipahealthcheck.ipa.nss',
'iparoles = ipahealthcheck.ipa.roles',
'ipatopology = ipahealthcheck.ipa.topology',
'ipatrust = ipahealthcheck.ipa.trust',
],
# plugin modules for ipahealthcheck.dogtag registry
'ipahealthcheck.dogtag': [
'dogtagca = ipahealthcheck.dogtag.ca',
],
# plugin modules for ipahealthcheck.ds registry
'ipahealthcheck.ds': [
'dsbackends = ipahealthcheck.ds.backends',
'dsconfig = ipahealthcheck.ds.config',
'dsdiskspace = ipahealthcheck.ds.disk_space',
'dsdse = ipahealthcheck.ds.dse',
'dsencryption = ipahealthcheck.ds.encryption',
'dsfschecks = ipahealthcheck.ds.fs_checks',
'dsnssssl = ipahealthcheck.ds.nss_ssl',
'dsplugins = ipahealthcheck.ds.ds_plugins',
'dsreplication = ipahealthcheck.ds.replication',
'dsruv = ipahealthcheck.ds.ruv',
],
# plugin modules for ipahealthcheck.system registry
'ipahealthcheck.system': [
'filesystemspace = ipahealthcheck.system.filesystemspace',
],
'ipaclustercheck.registry': [
'ipaclustercheck.ipa = ipaclustercheck.ipa.plugin:registry',
],
'ipaclustercheck.ipa': [
'crl = ipaclustercheck.ipa.crlmanager',
'ruv = ipaclustercheck.ipa.ruv',
],
},
classifiers=[
'Programming Language :: Python :: 3.6',
],
python_requires='!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
)