Pipfile 965 B

12345678910111213141516171819202122232425262728293031
  1. [[source]]
  2. name = "pypi"
  3. url = "https://pypi.org/simple"
  4. verify_ssl = true
  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. # python3.10 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. [requires]
  25. python_version = "3"
  26. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile