-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (27 loc) · 957 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (27 loc) · 957 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
[project]
name = "aurogene"
version = "7.0.0"
description = "Self-evolving digital mind — creates its own tools, goals, and inner council"
requires-python = ">=3.10"
[tool.setuptools.packages.find]
include = ["ouroboros*", "supervisor*"]
[tool.setuptools.package-data]
"*" = ["*.md"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "-q --tb=short"
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E501"] # line length handled by formatter
[tool.ruff.lint.per-file-ignores]
# colab_launcher: dynamic imports after runtime setup (secrets, drive mount)
"colab_launcher.py" = ["E402"]
# supervisor/state: re-exports append_jsonl from ouroboros.utils (SSOT pattern)
"supervisor/state.py" = ["E402"]
# supervisor/workers: imports _queue_lock after module body (circular import pattern)
"supervisor/workers.py" = ["E402"]