pyproject.toml 494 B

12345678910111213141516171819202122232425262728
  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. "textual",
  23. "toml",
  24. ]
  25. [tool.mypy]
  26. exclude = [".venv/**"]