Pipfile 979 B

1234567891011121314151617181920212223242526272829303132
  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. # black requires python>=3.6
  11. # https://github.com/psf/black/commit/e74117f172e29e8a980e2c9de929ad50d3769150#diff-2eeaed663bd0d25b7e608891384b7298R51
  12. black = {version = "==19.10b0", markers="python_version >= '3.6'"}
  13. pylint = "*"
  14. pytest = "*"
  15. pytest-cov = "*"
  16. pytest-timeout = "*"
  17. # workaround https://github.com/pytest-dev/pytest/issues/3953
  18. pathlib2 = {version = "*", markers="python_version < '3.6'"}
  19. # fix pluggy/manager.py (v0.13.1): import importlib_metadata => ModuleNotFoundError
  20. importlib_metadata = {version = "*", markers="python_version < '3.8'"}
  21. # zipp v2.0.0 dropped support for python3.5
  22. # https://github.com/jaraco/zipp/commit/05a3c52b4d41690e0471a2e283cffb500dc0329a
  23. zipp = "<2"
  24. [requires]
  25. python_version = "3"
  26. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile