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.
30 lines
654 B
TOML
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"]
|