-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.25 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
[tool.poetry]
name = "mlops-for-mle"
version = "0.1.0"
description = "mlops for machine learning engineer"
authors = ["Minki Kim <[email protected]>"]
readme = "README.md"
packages = [{include = "src"}]
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^1.5.2"
scikit-learn = "^1.2.0"
sqlalchemy = "^1.4.45"
python-dotenv = "^0.21.0"
psycopg2-binary = "^2.9.5"
polars = "^0.15.9"
pyarrow = "^10.0.1"
click = "^8.1.3"
numpy = "~1.23"
mlflow = "^2.1.1"
boto3 = "^1.26.50"
fastapi = "^0.89.1"
uvicorn = {extras = ["standard"], version = "^0.20.0"}
[tool.poetry.group.dev.dependencies]
ruff = "0.0.203"
black = "22.12.0"
mypy = "0.991"
pre-commit = "^2.21.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 100
fix = true
[tool.ruff.per-file-ignores]
"__init__.py" = ["E402"]
[tool.black]
line-length = 100
experimental-string-processing = true
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
disallow_any_generics = true
disallow_untyped_calls= true
disallow_untyped_defs= true
disallow_incomplete_defs = true
check_untyped_defs = true
strict_optional = false
warn_redundant_casts = true
warn_unused_ignores = true
allow_redefinition = true
show_column_numbers = true
pretty = true