Pipfile 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  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 = "*"
  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. pytest = "*"
  14. pytest-cov = "*"
  15. # python<3.11 compatibility
  16. # > File "[...]/lib/python3.10/site-packages/_pytest/_code/code.py", line 60, in <module>
  17. # > from exceptiongroup import BaseExceptionGroup
  18. # > ModuleNotFoundError: No module named 'exceptiongroup'
  19. exceptiongroup = {markers = "python_version < '3.11'"}
  20. # > File "[...]/lib/python3.10/site-packages/_pytest/config/findpaths.py", line 71, in load_config_dict_from_file
  21. # > import tomli as tomllib
  22. # > ModuleNotFoundError: No module named 'tomli'
  23. tomli = {markers = "python_version < '3.11'"}
  24. # remove `"markers": "python_version >= '3.11'"` to workaround:
  25. # > File "[...]/lib/python3.7/site-packages/pylint/lint/parallel.py", line 13, in <module>
  26. # > import dill
  27. # > ModuleNotFoundError: No module named 'dill'
  28. dill = {markers = "python_version >= '0'"}
  29. [requires]
  30. python_version = "3"
  31. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile