pyproject.toml 616 B

123456789101112131415161718192021222324252627282930313233343536
  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. "xarray",
  25. "netcdf4>=1.7.4",
  26. "typst>=0.15.0",
  27. ]
  28. [tool.mypy]
  29. exclude = [".venv/**"]
  30. [dependency-groups]
  31. dev = [
  32. "pandas-stubs>=3.0.3.260530",
  33. ]