Pipfile 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. location-guessing-game-telegram-bot = {path = ".", editable = true}
  7. [dev-packages]
  8. black = "==20.8b1"
  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 = {version = "*", markers = ""}
  19. # python<=3.8 compatibility
  20. # > [...]/python3.8/site-packages/telegram/ext/jobqueue.py:27: in <module>
  21. # > from apscheduler.schedulers.background import BackgroundScheduler
  22. # > [...]
  23. # > [...]/python3.8/site-packages/tzlocal/unix.py:6: in <module>
  24. # > import pytz_deprecation_shim as pds
  25. # > [...]
  26. # > [...]/python3.8/site-packages/pytz_deprecation_shim/_compat_py3.py:7: in <module>
  27. # > from backports import zoneinfo
  28. # > E ModuleNotFoundError: No module named 'backports'
  29. # > Error: Process completed with exit code 4.
  30. "backports.zoneinfo" = {version = "*", markers = "python_version <= '3.8'"}
  31. [requires]
  32. python_version = "3"
  33. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile