forked from masonhuang/cluster4npu
- Add .autoflow/ with health check, PRD, Design Doc, TDD, progress tracking - Add tests/conftest.py with PyQt5/KP SDK stubs for unit testing - Add pytest config to pyproject.toml (pythonpath, import-mode, test naming) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
420 B
TOML
19 lines
420 B
TOML
[project]
|
|
name = "cluster4npu"
|
|
version = "0.0.3"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9, <3.12"
|
|
dependencies = [
|
|
"nodegraphqt>=0.6.40",
|
|
"pyqt5>=5.15.11",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests/unit"]
|
|
pythonpath = ["."]
|
|
addopts = "--import-mode=importlib"
|
|
python_files = ["test_*.py"]
|
|
python_classes = ["Test*"]
|
|
python_functions = ["test_*", "should_*"]
|