21 lines
488 B
TOML
21 lines
488 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "didactopus"
|
|
version = "0.1.0"
|
|
description = "Didactopus: coverage and alignment analysis"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = ["pydantic>=2.7", "pyyaml>=6.0"]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8.0"]
|
|
|
|
[project.scripts]
|
|
didactopus-review-bridge = "didactopus.review_bridge_server:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|