-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
82 lines (72 loc) · 1.81 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[metadata]
name = ansible_roles
version = 1.0.0
long_description = file: README.adoc
long_description_content_type = text/plain
url = https://github.com/JonasPammer/ansible-roles
author = Jonas Pammer
author_email = opensource@jonaspammer.at
license = MIT
license_files = LICENSE
classifiers =
Development Status :: 1 - Planning
Environment :: Console
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Typing :: Typed
[options]
packages = find:
install_requires =
Click>=8.0
PyGitHub>=1
all-repos
attrs
diskcache
jinja2
pre-commit
pydantic
python-dotenv
pyyaml
requests
rich
types-PyYAML
types-requests
verboselogs
python_requires = >=3.10
[options.packages.find]
exclude =
tests*
testing*
[options.entry_points]
console_scripts =
ansible-roles = ansible_roles_scripts.regenerate:main
ansible-roles-cruft = ansible_roles_scripts.cruft:main
ansible-roles-merge_bot_pull_requests = ansible_roles_scripts.merge_bot_pull_requests:main
ansible-roles-sync_meta = ansible_roles_scripts.sync_meta:main
[bdist_wheel]
universal = True
[coverage:run]
plugins = covdefaults
[mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
[mypy-testing.*]
disallow_untyped_defs = false
[mypy-tests.*]
disallow_untyped_defs = false
[isort]
profile = black
[flake8]
max-line-length = 88
per-file-ignores =
tests/*.py: S101, WPS226, WPS432