-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
68 lines (60 loc) · 1.3 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
64
65
66
67
68
[tool.poetry]
name = "beaver"
version = "0.1.0"
description = ""
authors = ["Max Halford <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
beaver_sdk = { path = "./beaver_sdk/", develop = true }
python = "^3.10"
fastapi = "^0.92.0"
sqlmodel = "^0.0.8"
uvicorn = "^0.20.0"
kafka-python = "^2.0.2"
dill = "^0.3.6"
psycopg = {extras = ["binary"], version = "^3.1.4"}
psycopg2 = "^2.9.5"
celery = {extras = ["redis"], version = "^5.2.7"}
river = "^0.15.0"
websockets = "^10.4"
httpx = "^0.23.3"
rq = "^1.14.1"
redis = "^4.5.5"
pydantic = "^1.10.7"
[tool.poetry.group.ui.dependencies]
streamlit = "^1.21.0"
[tool.poetry.group.dev.dependencies]
black = "^22.8.0"
pytest = "^7.1.3"
pytest-xdist = "^3.1.0"
pre-commit = "^3.0.0"
mypy = "^0.991"
ipykernel = "^6.22.0"
scikit-learn = "^1.2.2"
ruff = "^0.0.267"
[tool.ruff]
line-length = 100
ignore = ["E501"]
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = [
"--doctest-modules",
"--doctest-glob=README.md",
"--ignore=examples",
"--verbose",
"-ra",
"--color=yes",
]
doctest_optionflags = "NORMALIZE_WHITESPACE NUMBER ELLIPSIS"
norecursedirs = [
"ui"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.mypy.overrides]]
module = [
"dill.*"
]
ignore_missing_imports = true