-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
44 lines (40 loc) · 1.13 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
[metadata]
name = ansible-argspec-gen
author = XLAB Steampunk
author_email = [email protected]
license_file = LICENSE
description = Generate Ansible argument specification from API docs
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = ansible, development
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
[options]
package_dir =
= src
packages = find:
zip_safe = True
include_package_data = True
setup_requires =
setuptools_scm
install_requires =
black
[options.extras_require]
ansible = ansible
base = ansible-base
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
ansible-argspec-gen = ansible_argspec_gen.cli:main