26 lines
418 B
TOML
26 lines
418 B
TOML
# pyproject.toml
|
|
[project]
|
|
name = "manual_slop"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"dearpygui",
|
|
"imgui-bundle",
|
|
"google-genai",
|
|
"anthropic",
|
|
"tomli-w",
|
|
"psutil>=7.2.2",
|
|
"fastapi",
|
|
"uvicorn",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=9.0.2",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
markers = [
|
|
"integration: marks tests as integration tests (requires live GUI)",
|
|
]
|