pyproject.toml 730 B

123456789101112131415161718192021222324252627282930313233
  1. [tool.poetry]
  2. name = "untube"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["Mohammed Khan <abukhan363@gmail.com>"]
  6. license = "MIT"
  7. readme = "README.md"
  8. [tool.poetry.dependencies]
  9. python = "^3.10"
  10. django = "^4.2.1"
  11. djangorestframework = "^3.14.0"
  12. django-filter = "^23.2"
  13. # psycopg2 = "^2.9.6"
  14. django-crispy-forms = "^2.0"
  15. bleach = "^6.0.0"
  16. humanize = "^4.6.0"
  17. google-auth = "^2.18.1"
  18. google-api-python-client = "^2.86.0"
  19. django-allauth ="^0.47.0" # "^0.54.0"
  20. whitenoise = "^6.4.0"
  21. django-split-settings = "^1.2.0"
  22. pyyaml = "^6.0"
  23. django-import-export = "^3.2.0"
  24. [tool.poetry.group.dev.dependencies]
  25. pre-commit = "^3.3.2"
  26. colorlog = "^6.7.0"
  27. [build-system]
  28. requires = ["poetry-core"]
  29. build-backend = "poetry.core.masonry.api"