Pipfile 891 B

123456789101112131415161718192021222324252627
  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. # workaround https://github.com/WanzenBug/pylint-import-requirements/issues/17
  11. importlib-metadata = "*"
  12. mypy = "*"
  13. # workaround https://github.com/pytest-dev/pytest/issues/3953
  14. pathlib2 = {version = "*", markers="python_version < '3.6'"}
  15. pylint = "*"
  16. pylint-import-requirements = "*"
  17. pytest = "*"
  18. pytest-cov = "*"
  19. # zipp v2.0.0 dropped support for python3.5
  20. # https://github.com/jaraco/zipp/commit/05a3c52b4d41690e0471a2e283cffb500dc0329a
  21. zipp = "<2"
  22. [requires]
  23. python_version = "3"
  24. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile