-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 857 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (34 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[project]
name = "orglog"
version = "0.1.0"
description = "OrgLog logging platform"
authors = [
{name = "Sujal"}
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi (>=0.135.1,<0.136.0)",
"uvicorn (>=0.41.0,<0.42.0)",
"redis (>=7.2.1,<8.0.0)",
"pydantic-settings (>=2.0.0,<3.0.0)",
"asyncpg (>=0.28.0)",
"psycopg2-binary (>=2.9.11,<3.0.0)",
"sqlalchemy (>=2.0.48,<3.0.0)",
"alembic (>=1.18.4,<2.0.0)",
"websockets (>=15.0,<16.0)",
"PyJWT (>=2.8.0,<3.0.0)",
"bcrypt (>=4.0.0,<5.0.0)",
"python-multipart (>=0.0.9)"
]
[tool.poetry]
package-mode = false
[tool.poetry.group.dev.dependencies]
black = ">=24.1.1"
isort = ">=5.13.2"
pre-commit = ">=3.0.0"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"