-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 812 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 812 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "genblaze"
version = "0.1.0"
description = "Orchestration framework for media generation with manifest persistence"
requires-python = ">=3.11"
license = "MIT"
dependencies = []
[tool.hatch.build]
skip-excluded-dirs = true
[tool.pytest.ini_options]
testpaths = ["libs/core/tests"]
[tool.ruff]
target-version = "py311"
line-length = 99
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "S"]
ignore = [
"S101", # assert is fine in tests
"S603", # subprocess without shell=True is fine
"S607", # partial path to executable is fine
]
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["S101", "S106"]
"libs/core/tests/**/*.py" = ["S101", "S106"]
"libs/connectors/**/tests/**/*.py" = ["S101", "S106"]