pyproject.toml 467 B

1234567891011121314151617181920212223242526
  1. [project]
  2. name = "alnn_rewrite"
  3. requires-python = ">=3.14"
  4. version = "0.1.0"
  5. description = "A rewrite of the Alzheimer's diagnosis network for Nick's thesis project."
  6. readme = "README.md"
  7. dependencies = [
  8. "torch",
  9. "torchvision",
  10. "numpy",
  11. "pandas",
  12. "scikit-learn",
  13. "matplotlib",
  14. "seaborn",
  15. "jupyterlab",
  16. "nibabel",
  17. "scipy",
  18. "tqdm",
  19. "xarray",
  20. "bayesian-torch",
  21. "jaxtyping",
  22. ]
  23. [tool.mypy]
  24. exclude = [".venv/**"]