Pipfile 411 B

123456789101112131415161718192021
  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. [requires]
  18. python_version = "3"