pyproject.toml 648 B

1234567891011121314151617181920212223242526272829
  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. [build-system]
  25. requires = ["poetry-core"]
  26. build-backend = "poetry.core.masonry.api"