Unify macrolactone detection, numbering, fragmentation, and splicing under the installable macro_lactone_toolkit package. - replace legacy src.* modules with the new package layout - add analyze/number/fragment CLI entrypoints and pixi tasks - migrate tests, README, and scripts to the new package API
29 lines
632 B
TOML
29 lines
632 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 = [
|
|
"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"]
|