Files
macro_split/pixi.toml
lingyuzeng 5e7b236f31 feat(toolkit): ship macro_lactone_toolkit package
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
2026-03-18 22:06:45 +08:00

24 lines
566 B
TOML

[workspace]
authors = ["hotwa <pylyzeng@gmail.com>"]
channels = ["conda-forge"]
name = "macro_lactone_toolkit"
platforms = ["osx-arm64", "linux-64"]
version = "0.1.0"
[tasks]
test = "pytest"
lint = "python -m compileall src"
smoke-import = "python -c \"import macro_lactone_toolkit\""
macro-lactone-toolkit = "python -m macro_lactone_toolkit.cli"
[dependencies]
python = "3.12.*"
pip = ">=24,<26"
pytest = ">=8.3,<9"
rdkit = ">=2025.9.1,<2026"
pandas = ">=2.3.3,<3"
numpy = ">=2.3.4,<3"
[pypi-dependencies]
macro_lactone_toolkit = { path = ".", editable = true }