Pipfile 559 B

123456789101112131415161718192021
  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 = "==19.10b0"
  10. mypy = "*"
  11. pylint = "*"
  12. pylint-import-requirements = "*"
  13. pytest = "*"
  14. pytest-cov = "*"
  15. # zipp v2.0.0 dropped support for python3.5
  16. # https://github.com/jaraco/zipp/commit/05a3c52b4d41690e0471a2e283cffb500dc0329a
  17. zipp = "<2"
  18. [requires]
  19. python_version = "3"