pyproject.toml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. mysql-connector-python = "^8.0.32"
  11. mysqlclient = "^2.1.1"
  12. python-multipart = "^0.0.5"
  13. email-validator = "^1.0.5"
  14. requests = "^2.23.0"
  15. celery = "^5.2.7"
  16. passlib = {extras = ["bcrypt"], version = "^1.7.2"}
  17. tenacity = "^8.0.0"
  18. pydantic = "^1.10.4"
  19. emails = "^0.6"
  20. raven = "^6.10.0"
  21. gunicorn = "^20.1.0"
  22. jinja2 = "^3.1.2"
  23. psycopg2-binary = "^2.8.5"
  24. alembic = "^1.9.0"
  25. sqlalchemy = "^1.4.0"
  26. pytest = "^7.2.0"
  27. python-jose = {extras = ["cryptography"], version = "^3.3.0"}
  28. [tool.poetry.dev-dependencies]
  29. mypy = "^0.991"
  30. black = "^19.10b0"
  31. isort = "^5.11.0"
  32. autoflake = "^1.3.1"
  33. flake8 = "^6.0.0"
  34. pytest = "^7.2.0"
  35. sqlalchemy-stubs = "^0.4"
  36. pytest-cov = "^4.0.0"
  37. [tool.isort]
  38. multi_line_output = 3
  39. include_trailing_comma = true
  40. force_grid_wrap = 0
  41. line_length = 88
  42. [build-system]
  43. requires = ["poetry>=0.12"]
  44. build-backend = "poetry.masonry.api"