-
Notifications
You must be signed in to change notification settings - Fork 77
/
setup.cfg
57 lines (51 loc) · 1.4 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
55
56
57
[metadata]
name = ansible_rulebook
version = 0.10.1
description = Event driven automation for Ansible
url = https://github.com/ansible/ansible-rulebook
license = Apache-2.0
keywords = ansible_rulebook
long_description = file: README.rst, HISTORY.rst
long_description_content_type = text/x-rst; charset=UTF-8
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.8
install_requires =
aiohttp
pyparsing >= 3.0
jsonschema
jinja2
dpath
janus
ansible-runner
websockets
drools_jpy == 0.2.0
[options.packages.find]
include =
ansible_rulebook
ansible_rulebook.*
[options.entry_points]
console_scripts =
ansible-rulebook = ansible_rulebook.cli:main
[bumpversion:file:setup.cfg]
search = version = {current_version}
replace = version = {new_version}
[bumpversion:file:ansible_rulebook/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[flake8]
extend-exclude = docs, venv, .venv
extend-ignore =
E203, # Whitespace before ':' (false positive in slices, handled by black.