Pipfile 763 B

1234567891011121314151617181920212223242526272829
  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. # workaround https://github.com/pytest-dev/pytest/issues/3953
  15. pathlib2 = {version = "*", markers="python_version < '3.6'"}
  16. # fix pluggy/manager.py (v0.13.1): import importlib_metadata => ModuleNotFoundError
  17. importlib_metadata = {version = "*", markers="python_version < '3.8'"}
  18. # zipp v2.0.0 dropped support for python3.5
  19. # https://github.com/jaraco/zipp/commit/05a3c52b4d41690e0471a2e283cffb500dc0329a
  20. zipp = "<2"
  21. [requires]
  22. python_version = "3"
  23. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile