pyproject.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. redis = "^4.5.0"
  17. passlib = {extras = ["bcrypt"], version = "^1.7.2"}
  18. tenacity = "^8.0.0"
  19. pydantic = "^1.10.4"
  20. emails = "^0.6"
  21. raven = "^6.10.0"
  22. gunicorn = "^20.1.0"
  23. jinja2 = "^3.1.2"
  24. psycopg2-binary = "^2.8.5"
  25. alembic = "^1.9.0"
  26. sqlalchemy = "^1.4.0"
  27. pytest = "^7.2.0"
  28. google-auth = "^2.16.2"
  29. python-jose = {extras = ["cryptography"], version = "^3.3.0"}
  30. pandas = "^2.0.0"
  31. openpyxl = "^3.1.0"
  32. chardet = "^5.1.0"
  33. openai = "^1.59.4"
  34. gradio_client = "^1.5.3"
  35. webuiapi = "^0.9.17"
  36. [tool.poetry.dev-dependencies]
  37. mypy = "^0.991"
  38. black = "^19.10b0"
  39. isort = "^5.11.0"
  40. autoflake = "^1.3.1"
  41. flake8 = "^6.0.0"
  42. pytest = "^7.2.0"
  43. sqlalchemy-stubs = "^0.4"
  44. pytest-cov = "^4.0.0"
  45. [tool.isort]
  46. multi_line_output = 3
  47. include_trailing_comma = true
  48. force_grid_wrap = 0
  49. line_length = 88
  50. [build-system]
  51. requires = ["poetry>=0.12"]
  52. build-backend = "poetry.masonry.api"