Pipfile 334 B

123456789101112131415161718
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. tooncher = {editable = true, path = "."}
  7. [dev-packages]
  8. black = "==19.10b0"
  9. pylint = "*"
  10. pylint-import-requirements = "*"
  11. pytest = "*"
  12. # pipenv run pytest --cov=tooncher --cov-report=term-missing
  13. pytest-cov = "*"
  14. [requires]
  15. python_version = "3"