-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1000 Bytes
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1000 Bytes
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
[tool.ruff]
line-length = 120
exclude = ["nifi/user_scripts/legacy_scripts", "services"]
target-version = "py311"
indent-width = 4
[tool.ruff.lint]
# Enable flake8-bugbear (`B`) rules, in addition to the defaults.
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
fixable = ["ALL"]
[tool.mypy]
plugins = ["pydantic.mypy"]
python_version = "3.11"
ignore_missing_imports = true
strict = false
files = "."
mypy_path = "./typings/"
warn_unused_configs = true
[tool.setuptools.packages.find]
include = ["nifi*"]
exclude = [
"*egg-info*",
"build*",
"dist*",
"nifi/conf*",
"nifi/drivers*",
"nifi/user_schemas*",
"nifi/user_templates*",
]
[tool.pyright]
venvPath = "."
venv = ".venv"
[project]
name = "cogstack_nifi"
version = "0.0.1"
requires-python = ">=3.11"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"