Pipfile 428 B

1234567891011121314151617181920
  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. pylint = "*"
  9. pytest = "*"
  10. pytest-cov = "*"
  11. # python3.7 compatibility
  12. # > File "[...]/python3.7/site-packages/_pytest/compat.py", line 56, in <module>
  13. # > import importlib_metadata # noqa: F401
  14. importlib-metadata = {markers = "python_version < '3.8'"}
  15. [requires]
  16. python_version = "3"