-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
63 lines (53 loc) · 1.68 KB
/
pyproject.toml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "giga-data-sharing"
version = "1.0.0"
description = "Giga Data Sharing API built with a lightweight FastAPI proxy on top of the reference Delta Sharing server implementation."
authors = ["Thinking Machines <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
delta-sharing = "^1.0.5"
deltalake = "^0.12.0"
fastapi = "^0.112.2"
pydantic = { extras = ["email"], version = "^2.4.2" }
pydantic-settings = "^2.1.0"
uvicorn = { extras = ["standard"], version = "^0.30.6" }
gunicorn = "^23.0.0"
fastapi-azure-auth = "^4.4.0"
loguru = "^0.7.2"
azure-storage-blob = "^12.18.3"
orjson = "^3.10.7"
sqlalchemy = { extras = ["asyncio"], version = "^2.0.23" }
alembic = "^1.12.1"
psycopg2-binary = "^2.9.9"
passlib = { extras = ["argon2"], version = "^1.7.4" }
asyncpg = "^0.29.0"
country-converter = "^1.1.1"
sentry-sdk = { extras = ["fastapi"], version = ">=2.8.0" }
azure-storage-file-datalake = "^12.14.0"
aiohttp = ">=3.10.2"
urllib3 = ">=2.2.2"
certifi = ">=2024.07.04"
[tool.poetry.group.dev.dependencies]
ipython = "^8.16.1"
ruff = "^0.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py311"
ignore-init-module-imports = true
[tool.ruff.lint]
select = ["E", "W", "F", "I", "C", "B", "UP"]
ignore = ["E203", "E266", "E501", "E402", "UP007"]
[tool.ruff.mccabe]
max-complexity = 10
[tool.ruff.lint.flake8-bugbear]
extend-immutable-calls = ["fastapi.Depends", "fastapi.Query"]
[tool.ruff.lint.flake8-builtins]
builtins-ignorelist = ["id"]
[tool.ruff.lint.isort]
combine-as-imports = true
force-wrap-aliases = true
[tool.ruff.lint.pep8-naming]
classmethod-decorators = ["pydantic.validator"]