pyproject.toml 973 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. [tool.poetry]
  2. name = "app"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["tomoya <tomoya@choozmo.com>"]
  6. [tool.poetry.dependencies]
  7. python = "^3.10.0"
  8. uvicorn = "^0.20.0"
  9. fastapi = "^0.89.0"
  10. python-multipart = "^0.0.5"
  11. email-validator = "^1.0.5"
  12. requests = "^2.23.0"
  13. celery = "^5.2.7"
  14. passlib = {extras = ["bcrypt"], version = "^1.7.2"}
  15. tenacity = "^8.0.0"
  16. pydantic = "^1.10.4"
  17. emails = "^0.6"
  18. raven = "^6.10.0"
  19. gunicorn = "^20.1.0"
  20. jinja2 = "^3.1.2"
  21. psycopg2-binary = "^2.8.5"
  22. alembic = "^1.9.0"
  23. sqlalchemy = "^1.4.0"
  24. pytest = "^7.2.0"
  25. python-jose = {extras = ["cryptography"], version = "^3.3.0"}
  26. [tool.poetry.dev-dependencies]
  27. mypy = "^0.991"
  28. black = "^19.10b0"
  29. isort = "^5.11.0"
  30. autoflake = "^1.3.1"
  31. flake8 = "^6.0.0"
  32. pytest = "^7.2.0"
  33. sqlalchemy-stubs = "^0.4"
  34. pytest-cov = "^4.0.0"
  35. [tool.isort]
  36. multi_line_output = 3
  37. include_trailing_comma = true
  38. force_grid_wrap = 0
  39. line_length = 88
  40. [build-system]
  41. requires = ["poetry>=0.12"]
  42. build-backend = "poetry.masonry.api"