Pipfile 540 B

123456789101112131415161718192021222324
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. freesurfer-stats = {editable = true, path = "."}
  7. [dev-packages]
  8. isort = "*"
  9. # >=2.3.0 due to false+ assignment-from-no-return
  10. # https://github.com/PyCQA/pylint/issues/2694
  11. pylint = ">=2.3.0,<3"
  12. pytest = "<5"
  13. # >=2 for --cov-fail-under
  14. pytest-cov = "<3,>=2"
  15. pytest-timeout = "<2"
  16. yapf = "*"
  17. # v2.0.0 dropped python<3.6 support
  18. # https://github.com/jaraco/zipp/commit/05a3c52b4d41690e0471a2e283cffb500dc0329a
  19. zipp = "<2"
  20. [requires]
  21. python_version = "3"