Pipfile 868 B

12345678910111213141516171819202122232425262728293031
  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. # python3.5
  8. numpy = "<1.19.0"
  9. [dev-packages]
  10. pylint = "*"
  11. pytest = "*"
  12. pytest-cov = "*"
  13. pytest-timeout = "*"
  14. # python3.5 compatibility
  15. # https://github.com/python/importlib_metadata/commit/107f9029fd5807c6579b881db19e11a0488f0675
  16. # fix pluggy/manager.py (v0.13.1) on python<3.8: import importlib_metadata => ModuleNotFoundError
  17. importlib-metadata = {version = "<3", markers="python_version < '3.8'"}
  18. isort = "<5"
  19. # workaround https://github.com/pytest-dev/pytest/issues/3953
  20. pathlib2 = {version = "*", markers="python_version < '3.6'"}
  21. # https://github.com/jaraco/zipp/commit/05a3c52b4d41690e0471a2e283cffb500dc0329a
  22. zipp = "<2"
  23. [requires]
  24. python_version = "3"
  25. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile