Pipfile 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. freesurfer-volume-reader = {editable = true, path = "./.."}
  7. pandas = "*"
  8. matplotlib = "*"
  9. seaborn = "*"
  10. notebook = "*"
  11. # nbconvert v6.0.2 made `;` suffix on last line ineffective
  12. nbconvert = "<6.0.2"
  13. # python3.7 compatibility
  14. ipython = "<8"
  15. numpy = "<1.22"
  16. # python<=3.8 compatibility
  17. # > File "[...]/python3.8/site-packages/jsonschema/_utils.py", line 12, in <module>
  18. # > import importlib_resources as resources # type: ignore
  19. # > ModuleNotFoundError: No module named 'importlib_resources'
  20. importlib-resources = {markers = "python_version <= '3.8'"}
  21. # > File "[...]/python3.8/site-packages/importlib_resources/_compat.py", line 11, in <module>
  22. # > from zipp import Path as ZipPath # type: ignore
  23. # > ModuleNotFoundError: No module named 'zipp'
  24. zipp = {markers = "python_version <= '3.8'"}
  25. # python3.10 compatibility
  26. # > File "[...]/lib/python3.10/site-packages/mypy/main.py", line 11, in <module>
  27. # > from typing_extensions import Final, NoReturn
  28. # > ModuleNotFoundError: No module named 'typing_extensions'
  29. typing-extensions = {markers = ""}
  30. [requires]
  31. python_version = "3"