Files
physicalCombinatorics/pyproject.toml
Simonson, Andrew 8118a62242 Add Flask web UI, Docker Compose, core engine + tests
- physcom core: CLI, 5-pass pipeline, SQLite repo, 37 tests
- physcom_web: Flask app with HTMX for entity/domain/pipeline/results CRUD
- Docker Compose: web + cli services sharing a named volume for the DB
- Clean up local settings to use wildcard permissions

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 13:59:53 -06:00

31 lines
553 B
TOML

[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "physcom"
version = "0.1.0"
description = "Physical Combinatorics — innovation via attribute mixing"
requires-python = ">=3.11"
dependencies = [
"click>=8.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
]
web = [
"flask>=3.0",
]
[project.scripts]
physcom = "physcom.cli:main"
physcom-web = "physcom_web.app:run"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]