- Add pixi.toml with digger and pipeline environments - Implement PixiRunner class replacing DockerContainerManager - Add run_digger_stage.py for standalone digger execution - Update run_single_fna_pipeline.py to use PixiRunner - Remove docker dependency from pyproject.toml - Delete docker_client.py (no longer needed) BREAKING CHANGE: Docker is no longer required. Use 'pixi install' instead.
26 lines
568 B
TOML
26 lines
568 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "bttoxin-pipeline"
|
|
version = "0.1.0"
|
|
description = "BtToxin Digger + Shotter single-FNA pipeline with plotting and report"
|
|
readme = "README.md"
|
|
authors = [{name="Bttoxin Team"}]
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"pandas>=2.0.0",
|
|
"matplotlib>=3.7.0",
|
|
"seaborn>=0.12.2; python_version>='3.9'",
|
|
]
|
|
|
|
[project.scripts]
|
|
bttoxin-run = "bttoxin.cli:main"
|
|
|
|
[tool.setuptools]
|
|
packages = ["bttoxin"]
|
|
|
|
[tool.setuptools.package-data]
|
|
bttoxin = []
|