Files
macrolactone-toolkit/pyproject.toml
lingyuzeng c0ead42384 feat(toolkit): add classification and migration
Implement the standard/non-standard/not-macrolactone classification layer
and integrate it into analyzer, fragmenter, and CLI outputs.

Port the remaining legacy package capabilities into new visualization and
workflow modules, restore batch/statistics/SDF scripts on top of the flat
CSV workflow, and update active docs to the new package API.
2026-03-18 23:56:41 +08:00

30 lines
654 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",
]
[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"]