Files
macrolactone-toolkit/scripts/batch_process_multi_rings.py
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

11 lines
199 B
Python

from __future__ import annotations
import sys
from macro_lactone_toolkit.cli import main
if __name__ == "__main__":
sys.argv = ["macro-lactone-toolkit", "fragment", *sys.argv[1:]]
main()