mirror of
https://github.com/trycua/computer.git
synced 2025-12-31 02:19:58 -06:00
- Remove per-package Black, Ruff, and MyPy settings in individual pyproject.toml files - Centralize Ruff configuration in root pyproject.toml under [tool.ruff.lint] with selected ignores - Add Prettier setup and usage instructions to Development.md - Include pnpm install instructions for JS/TS dependencies - Ensure pre-commit hooks enforce Python and JS/TS formatting consistently
34 lines
671 B
TOML
34 lines
671 B
TOML
[build-system]
|
|
requires = ["pdm-backend"]
|
|
build-backend = "pdm.backend"
|
|
|
|
[project]
|
|
name = "cua-core"
|
|
version = "0.1.9"
|
|
description = "Core functionality for Cua including telemetry and shared utilities"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "TryCua", email = "gh@trycua.com" }
|
|
]
|
|
dependencies = [
|
|
"pydantic>=2.0.0",
|
|
"httpx>=0.24.0",
|
|
"posthog>=3.20.0"
|
|
]
|
|
requires-python = ">=3.11"
|
|
|
|
[tool.pdm]
|
|
distribution = true
|
|
|
|
[tool.pdm.build]
|
|
includes = ["core/"]
|
|
source-includes = ["tests/", "README.md", "LICENSE"]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|
|
python_files = "test_*.py"
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.3.5",
|
|
] |