Pipfile 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. [[source]]
  2. name = "pypi"
  3. url = "https://pypi.org/simple"
  4. verify_ssl = true
  5. [packages]
  6. location-guessing-game-telegram-bot = {path = ".", editable = true}
  7. [dev-packages]
  8. black = "*"
  9. mypy = "*"
  10. pylint = "*"
  11. pytest = "*"
  12. pytest-cov = "*"
  13. # python3.10 compatibility
  14. # > File "[...]/lib/python3.10/site-packages/_pytest/_code/code.py", line 60, in <module>
  15. # > from exceptiongroup import BaseExceptionGroup
  16. # > ModuleNotFoundError: No module named 'exceptiongroup'
  17. exceptiongroup = {markers = "python_version < '3.11'"}
  18. # > File "[...]/lib/python3.10/site-packages/_pytest/config/findpaths.py", line 71, in load_config_dict_from_file
  19. # > import tomli as tomllib
  20. # > ModuleNotFoundError: No module named 'tomli'
  21. tomli = {markers = "python_version < '3.11'"}
  22. # > tests/conftest.py:24: in <module>
  23. # > from location_guessing_game_telegram_bot import _Photo
  24. # > location_guessing_game_telegram_bot/__init__.py:30: in <module>
  25. # > import telegram.ext
  26. # > …/site-packages/telegram/ext/__init__.py:30: in <module>
  27. # > from .jobqueue import JobQueue, Job
  28. # > …/site-packages/telegram/ext/jobqueue.py:26: in <module>
  29. # > from apscheduler.events import EVENT_JOB_ERROR, EVENT_JOB_EXECUTED, JobEvent
  30. # > …/site-packages/apscheduler/__init__.py:1: in <module>
  31. # > from pkg_resources import get_distribution, DistributionNotFound
  32. # > E ModuleNotFoundError: No module named 'pkg_resources'
  33. setuptools = "<82"
  34. [requires]
  35. python_version = "3"
  36. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile