circuitforge-core/pyproject.toml

40 lines
789 B
TOML

[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "circuitforge-core"
version = "0.8.0"
description = "Shared scaffold for CircuitForge products (MIT)"
requires-python = ">=3.11"
dependencies = [
"pyyaml>=6.0",
"requests>=2.31",
"openai>=1.0",
]
[project.optional-dependencies]
manage = [
"platformdirs>=4.0",
"typer[all]>=0.12",
]
dev = [
"circuitforge-core[manage]",
"pytest>=8.0",
"pytest-asyncio>=0.23",
"fastapi>=0.110",
"httpx>=0.27",
"ruff>=0.4",
"mypy>=1.10",
]
[project.scripts]
cf-manage = "circuitforge_core.manage.cli:app"
[tool.setuptools.packages.find]
where = ["."]
include = ["circuitforge_core*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"