-
Notifications
You must be signed in to change notification settings - Fork 78
/
setup.cfg
67 lines (60 loc) · 1.64 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
58
59
60
61
62
63
64
65
66
67
[metadata]
name = ansible_rulebook
version = 1.1.2
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 :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.9
install_requires =
aiohttp >=3,<3.11
pyparsing >= 3.0,<4
jsonschema >=4,<5
jinja2 >=3,<4
dpath >= 2.1.4,<3
janus >=1,<2
ansible-runner >=2,<3
websockets >=10,<14
drools_jpy == 0.3.9
watchdog >=3,<7
xxhash >=3,<4
pyyaml >=6,<7
psycopg[binary] >=3,<4
[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.
[options.extras_require]
production =
psycopg[c] >=3,<4
development =
psycopg[binary] >=3,<4