Pipfile 719 B

12345678910111213141516171819202122232425262728293031
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. freesurfer-surface = {editable = true, path = "."}
  7. # python3.7 compatibility
  8. numpy = "<1.22"
  9. [dev-packages]
  10. black = "*"
  11. mypy = "*"
  12. pylint = "*"
  13. pylint-import-requirements = "*"
  14. pytest = "*"
  15. pytest-cov = "*"
  16. # python3.10 compatibility
  17. # > File "[...]/lib/python3.10/site-packages/mypy/main.py", line 11, in <module>
  18. # > from typing_extensions import Final, NoReturn
  19. # > ModuleNotFoundError: No module named 'typing_extensions'
  20. typing-extensions = {markers = ""}
  21. # mypy on python<3.8
  22. typed-ast = {markers = "python_version < '3.8'"}
  23. [requires]
  24. python_version = "3"
  25. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile