Pipfile 787 B

12345678910111213141516171819202122232425
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [dev-packages]
  6. ical2vdir = {editable = true,path = "."}
  7. # black requires python>=3.6
  8. # https://github.com/psf/black/commit/e74117f172e29e8a980e2c9de929ad50d3769150#diff-2eeaed663bd0d25b7e608891384b7298R51
  9. black = {version = "==19.10b0", markers="python_version >= '3.6'"}
  10. mypy = "*"
  11. # workaround https://github.com/pytest-dev/pytest/issues/3953
  12. pathlib2 = {version = "*", markers="python_version < '3.6'"}
  13. pylint = "*"
  14. pylint-import-requirements = "*"
  15. pytest = "*"
  16. pytest-cov = "*"
  17. # zipp v2.0.0 dropped support for python3.5
  18. # https://github.com/jaraco/zipp/commit/05a3c52b4d41690e0471a2e283cffb500dc0329a
  19. zipp = "<2"
  20. [requires]
  21. python_version = "3"
  22. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile