pyproject.toml 554 B

1234567891011121314151617181920212223242526
  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.9"
  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.54.0"
  20. whitenoise = "^6.4.0"
  21. [build-system]
  22. requires = ["poetry-core"]
  23. build-backend = "poetry.core.masonry.api"