-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.03 KB
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
[tool.poetry]
name = "deltalink"
version = "0.1.0"
description = ""
authors = ["Geoffrey Lalanne <geoffrey@lalanne.ca>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
getdaft = {extras = ["deltalake", "sql", "unity"], version = "^0.4.0"}
fastapi = {extras = ["standard"], version = "^0.115.6"}
httpx = "0.27.2"
sql-metadata = "^2.15.0"
pydantic-settings = "^2.7.0"
fastapi-msal = "^2.1.6"
itsdangerous = "^2.2.0"
deltalake = "^0.25.5"
pandas = "^2.2.3"
ruff = "^0.11.12"
pre-commit = "^4.2.0"
pytest = "^8.3.5"
ray = {extras = ["default"], version = "^2.46.0"}
gunicorn = "^23.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
select = [
"E", # pycodestyle (error)
"F", # pyflakes
"B", # bugbear
"B9",
"C4", # flake8-comprehensions
"SIM", # flake8-simplify
"I", # isort
"UP", # pyupgrade
"PIE", # flake8-pie
"PGH", # pygrep-hooks
"PYI", # flake8-pyi
"RUF",
]
[tool.ruff]
include = ["pyproject.toml", "deltalink/**/*.py"]