Files
macro_split/pyproject.toml
lingyuzeng 8071a141ee feat(validation): archive key result assets
Keep key validation outputs and analysis tables tracked directly,
package analysis plot PNGs into a small tar.gz backup, and add
analysis scripts plus tests so the stored results remain
reproducible without flooding git with large image trees.
2026-03-19 21:34:27 +08:00

31 lines
673 B
TOML

[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "macro_lactone_toolkit"
version = "0.1.0"
description = "Toolkit for macrolactone detection, numbering, fragmentation, and splicing."
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
authors = [
{ name = "Macro Split Team" },
]
dependencies = [
"matplotlib>=3.10",
"numpy>=1.26",
"pandas>=2.2",
"seaborn>=0.13",
]
[project.scripts]
macro-lactone-toolkit = "macro_lactone_toolkit.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["macro_lactone_toolkit*"]
[tool.pytest.ini_options]
testpaths = ["tests"]