Pipfile 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. pubmed-bibtex = {editable = true, path = "."}
  7. [dev-packages]
  8. black = "*"
  9. mypy = "*"
  10. pylint = "*"
  11. pylint-import-requirements = "*"
  12. pytest = "*"
  13. pytest-cov = "*"
  14. # python3.10 compatibility
  15. # > File "[...]/lib/python3.10/site-packages/mypy/main.py", line 11, in <module>
  16. # > from typing_extensions import Final, NoReturn
  17. # > ModuleNotFoundError: No module named 'typing_extensions'
  18. typing-extensions = "*"
  19. # mypy on python<3.8
  20. typed-ast = {markers = "python_version < '3.8'"}
  21. # > File "[...]/lib/python3.10/site-packages/_pytest/_code/code.py", line 60, in <module>
  22. # > from exceptiongroup import BaseExceptionGroup
  23. # > ModuleNotFoundError: No module named 'exceptiongroup'
  24. exceptiongroup = {markers = "python_version < '3.11'"}
  25. # > File "[...]/lib/python3.10/site-packages/_pytest/config/findpaths.py", line 71, in load_config_dict_from_file
  26. # > import tomli as tomllib
  27. # > ModuleNotFoundError: No module named 'tomli'
  28. tomli = {markers = "python_version < '3.11'"}
  29. # > File "[...]/lib/python3.10/site-packages/astroid/decorators.py", line 16, in <module>
  30. # > import wrapt
  31. # > ModuleNotFoundError: No module named 'wrapt'
  32. wrapt = "*"
  33. [requires]
  34. python_version = "3"
  35. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile