forked from freeipa/freeipa-healthcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
67 lines (65 loc) · 2.43 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
from setuptools import find_packages, setup
setup(
name='ipahealthcheck',
version='0.3',
namespace_packages=['ipahealthcheck'],
package_dir={'': 'src'},
# packages=find_packages(where='src'),
packages=[
'ipahealthcheck.core',
'ipahealthcheck.dogtag',
'ipahealthcheck.ds',
'ipahealthcheck.ipa',
'ipahealthcheck.meta',
'ipahealthcheck.system'
],
entry_points={
# creates bin/ipahealthcheck
'console_scripts': [
'ipa-healthcheck = ipahealthcheck.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.dns',
'ipafiles = ipahealthcheck.ipa.files',
'ipahost = ipahealthcheck.ipa.host',
'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': [
'dsreplication = ipahealthcheck.ds.replication',
'dsruv = ipahealthcheck.ds.ruv',
],
# plugin modules for ipahealthcheck.system registry
'ipahealthcheck.system': [
'filesystemspace = ipahealthcheck.system.filesystemspace',
],
},
classifiers=[
'Programming Language :: Python :: 3.6',
],
python_requires='!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
setup_requires=['pytest-runner',],
tests_require=['pytest',],
)