pyproject.toml 646 B

1234567891011121314151617181920212223242526272829303132
  1. [tool.poetry]
  2. name = "todo"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["Your Name <you@example.com>"]
  6. readme = "README.md"
  7. [tool.poetry.dependencies]
  8. python = "^3.10"
  9. Django = "^4.1.1"
  10. psycopg2-binary = "^2.9.3"
  11. pytils = "^0.4.1"
  12. pymorphy2 = "^0.9.1"
  13. selenium = "^4.4.3"
  14. celery = "^5.2.7"
  15. Pillow = "^9.2.0"
  16. python-dotenv = "^0.21.0"
  17. django-debug-toolbar = "^3.6.0"
  18. redis = "^4.3.4"
  19. lxml = "^4.9.1"
  20. requests = "^2.28.1"
  21. django-stubs = "^1.12.0"
  22. djangorestframework = "^3.14.0"
  23. parameterized = "^0.8.1"
  24. django-extensions = "^3.2.1"
  25. fake-useragent = "^1.1.0"
  26. [build-system]
  27. requires = ["poetry-core"]
  28. build-backend = "poetry.core.masonry.api"