-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.07 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
[tool.poetry]
name = "baal-dashboard"
version = "0.1.0"
description = "Dashboard for active learning tracking"
authors = ["Dref360 <[email protected]>"]
license = "Apache V2"
packages = [{ include = "baal_dashboard/" },]
[tool.poetry.dependencies]
python = "^3.9"
uvicorn = {extras = ["standard"], version = "^0.20.0"}
fastapi = "^0.89.0"
mlflow-skinny = "^2.1.1"
numpy = "^1.24.1"
pandas = "^1.5.2"
plotly = "^5.15.0"
[tool.poetry.dev-dependencies]
black = "^22.12.0"
flake8-black = "^0.3.6"
mypy = "^0.991"
isort = "^5.11.4"
pre-commit = "^3.0.1"
baal = {extras = ["vision"], version = "^1.7.0", optional = true}
[tool.poetry.extras]
full = ["baal"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
skip = ["__init__.py"]
filter_files = true
[tool.mypy]
plugins = ["pydantic.mypy"]
python_version = 3.8
show_error_codes = true
warn_return_any = true
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
ignore_missing_imports = true