Pipfile 892 B

1234567891011121314151617181920212223242526272829303132
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. ical2vdir = {editable = true,path = "."}
  7. [dev-packages]
  8. black = "==21.12b0"
  9. # >=0.1.1 for https://github.com/blu3r4y/blinkcheck/pull/2
  10. blinkcheck = {version = ">=0.1.1", markers = "python_version >= '3.8'"}
  11. mypy = "*"
  12. pylint = "*"
  13. pylint-import-requirements = "*"
  14. pytest = "*"
  15. pytest-cov = "*"
  16. # remove {"markers": "python_version >= '3.7'"} for _pytest/compat.py
  17. importlib-metadata = "<4.9"
  18. # python3.10 compatibility
  19. # > File "[...]/lib/python3.10/site-packages/mypy/main.py", line 11, in <module>
  20. # > from typing_extensions import Final, NoReturn
  21. # > ModuleNotFoundError: No module named 'typing_extensions'
  22. typing_extensions = "*"
  23. # mypy on python<3.8
  24. typed-ast = {markers = "python_version < '3.8'"}
  25. [requires]
  26. python_version = "3"
  27. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile