Pipfile 1018 B

12345678910111213141516171819202122232425262728293031323334
  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 requires python>=3.6
  9. # https://github.com/psf/black/commit/e74117f172e29e8a980e2c9de929ad50d3769150#diff-2eeaed663bd0d25b7e608891384b7298R51
  10. black = {version = "==19.10b0", markers = "python_version >= '3.6'"}
  11. mypy = "*"
  12. pylint = "*"
  13. pylint-import-requirements = "*"
  14. pytest = "*"
  15. # pipenv run pytest --cov=tooncher --cov-report=term-missing
  16. pytest-cov = "*"
  17. # python3.5 compatibility
  18. isort = "<5"
  19. # workaround https://github.com/pytest-dev/pytest/issues/3953
  20. pathlib2 = {version = "*", markers="python_version < '3.6'"}
  21. # https://github.com/jaraco/zipp/commit/05a3c52b4d41690e0471a2e283cffb500dc0329a
  22. zipp = "<2"
  23. # python3.8 compatibility
  24. # workaround https://github.com/WanzenBug/pylint-import-requirements/issues/17
  25. importlib-metadata = "*"
  26. # workaround pipenv unexpectedly adding marker "python_version < '3.8'"
  27. typed-ast = "*"
  28. [requires]
  29. python_version = "3"