-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.cfg
54 lines (50 loc) · 1.37 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
54
[metadata]
name = ansible-doc-extractor
author = XLAB Steampunk
author_email = [email protected]
license_file = LICENSE
description = Extract Ansible module documentation
long_description = file: README.rst
keywords = ansible, documentation
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
url = https://github.com/xlab-steampunk/ansible-doc-extractor
project_urls =
Bug Tracker = https://github.com/xlab-steampunk/ansible-doc-extractor/issues
[options]
package_dir =
= src
packages = find:
zip_safe = True
include_package_data = True
setup_requires =
setuptools_scm
install_requires =
jinja2
PyYAML
antsibull-docs-parser >= 1.0.0, < 2.0.0
python_requires = >=3.6
[options.extras_require]
ansible =
ansible
base =
ansible-base
core =
ansible-core
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
ansible-doc-extractor = ansible_doc_extractor.cli:main