-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
55 lines (50 loc) · 981 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "ansible-risk-insight"
description = "My package description"
readme = "README.rst"
requires-python = ">=3.7"
keywords = ["one", "two"]
license = {text = "Apache License 2.0"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"gitdb",
"joblib",
"jsonpickle",
"PyYAML",
"smmap",
"tabulate",
"requests",
"ruamel.yaml",
"filelock",
"rapidfuzz",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "ansible_risk_insight._version.__version__"}
[project.scripts]
ansible-risk-insight = "ansible_risk_insight:main"
ari = "ansible_risk_insight:main"
[tool.black]
line-length = 150
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.flake8]
ignore = "E203, W503,"
max-line-length = 150