1
0

Pipfile 1020 B

12345678910111213141516171819202122232425262728293031323334
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. free-disk = {editable = true, path = "."}
  7. [dev-packages]
  8. black = "*"
  9. mypy = "*"
  10. pylint = "*"
  11. pylint-import-requirements = "*"
  12. pytest = "*"
  13. pytest-cov = "*"
  14. # python3.10 compatibility
  15. # > File "[...]/lib/python3.10/site-packages/mypy/main.py", line 11, in <module>
  16. # > from typing_extensions import Final, NoReturn
  17. # > ModuleNotFoundError: No module named 'typing_extensions'
  18. typing-extensions = "*"
  19. # > File "[...]/lib/python3.10/site-packages/_pytest/_code/code.py", line 60, in <module>
  20. # > from exceptiongroup import BaseExceptionGroup
  21. # > ModuleNotFoundError: No module named 'exceptiongroup'
  22. exceptiongroup = {markers = "python_version < '3.11'"}
  23. # > File "[...]/lib/python3.10/site-packages/astroid/decorators.py", line 16, in <module>
  24. # > import wrapt
  25. # > ModuleNotFoundError: No module named 'wrapt'
  26. wrapt = "*"
  27. [requires]
  28. python_version = "3"
  29. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile