Pipfile 554 B

1234567891011121314151617181920212223
  1. [[source]]
  2. name = "pypi"
  3. url = "https://pypi.org/simple"
  4. verify_ssl = true
  5. [packages]
  6. dlinfo = {editable = true,path = "."}
  7. [dev-packages]
  8. pytest = "*"
  9. pytest-cov = "*"
  10. pylint = "*"
  11. # python<3.8 compatibility
  12. importlib-metadata = "*"
  13. # workaround for python<3.10
  14. # > File "[...]/python3.9/site-packages/astroid/decorators.py", line 36, in <module>
  15. # > from typing_extensions import ParamSpec
  16. # > ModuleNotFoundError: No module named 'typing_extensions'
  17. typing_extensions = {markers = "python_version < '3.10'"}
  18. [requires]
  19. python_version = "3"