-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
57 lines (49 loc) · 1.36 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
[tool.poetry]
name = "desbordante-server"
version = "0.1.0"
description = "Server-side of Desbordante — a high-performance data profiler"
homepage = "https://github.com/Mstrutov/Desbordante"
authors = ["Maksim Strutovskii <[email protected]>"]
license = "AGPL-3.0-only"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
fastapi = { extras = ["all"], version = "^0.109.2" }
sqlalchemy = "^2.0.28"
alembic = "^1.13.1"
celery = {extras = ["pytest"], version = "^5.3.6"}
python-dotenv = "^1.0.1"
psycopg = {extras = ["binary"], version = "^3.1.18"}
sqlalchemy-utils = "^0.41.1"
pydantic-validators = "^0.1.0"
desbordante = "^2.1.0"
desbordante-stubs = "^0.2.0"
pandas = "^2.2.1"
pandas-stubs = "^2.2.0.240218"
python-multipart = "^0.0.9"
aiofiles = "^23.2.1"
cfgv = "^3.4.0"
flower = "^2.0.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
ruff = "^0.3.2"
pre-commit = "^3.6.2"
celery-types = "^0.22.0"
watchdog = "^4.0.0"
pytest-cov = "^4.1.0"
ipykernel = "^6.29.3"
polyfactory = "^2.15.0"
pyright = "^1.1.355"
pytest-alembic = "^0.11.0"
pytest-mock = "^3.14.0"
pytest-asyncio = "^0.24.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
reportMissingModuleSource = false
[tool.ruff.lint]
fixable = ["ALL"]
[tool.pytest.ini_options]
filterwarnings = ["ignore::DeprecationWarning"]