-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
53 lines (48 loc) · 1.18 KB
/
setup.cfg
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
# setup.cfg for backwards compatibility with setuptools on Python 3.6
[metadata]
name = ipahcc
version = attr: ipahcc._version.__version__
description = IPA enrollment agent for Red Hat Hybrid Cloud Console
long_description = file: README.md
long_description_content_type = text/markdown
license = GPL-3.0-or-later
license_files = COPYING
author = Christian Heimes
author_email = [email protected]
platforms = any
[options]
python_requires = >=3.6
setup_requires = setuptools
install_requires =
requests
ipalib
netaddr < 1.0.0; python_version == '3.6'
package_dir=
=src
packages=
ipahcc
ipahcc.client
ipahcc.server
ipahcc.server.sign
ipaserver.install.plugins
ipaserver.plugins
include_package_data = True
[options.extras_require]
server =
cryptography
ipaclient
jsonschema
jwcrypto
[options.entry_points]
console_scripts =
ipa-hcc=ipahcc.server.cli:main
ipa-hcc-auto-enrollment=ipahcc.client.auto_enrollment:main
ipa-hcc-client-prepare=ipahcc.client.client_prepare:main
ipa-hcc-stage-console=ipahcc.client.stage_console:main
[options.package_data]
ipahcc =
py.typed
ipahcc.server =
schema/*.json
[bdist_wheel]
universal = 1