forked from tiamiceli/tia_open_source_mlops_e2e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (56 loc) · 1.28 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
[tool.poetry]
name = "tia_open_source_mlops_e2e"
version = "0.1.0"
description = "OReilly MLOps."
authors = ["Miceli, Tia <miceli@fnal.gov>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
numba = "^0.56.4"
python-box = "^6.1.0"
jupyter = "^1.0.0"
pandas = "^1.5.3"
sqlalchemy = "^1.4.46"
psycopg2-binary = "^2.9.5"
matplotlib = "^3.6.3"
seaborn = "^0.12.2"
plotly-express = "^0.4.1"
scikit-learn = "^1.2.0"
lightgbm = "^3.3.4"
xgboost = "^1.7.3"
eli5 = "^0.13.0"
uvicorn = "^0.20.0"
fastapi = "^0.89.1"
csv2md = "^1.1.2"
ipykernel = "^6.20.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
pytest-cov = "^4.0.0"
pytest-mock = "^3.9.0"
flake8 = "^5.0.4"
black = "^22.8.0"
coverage = {version = "^6.5.0", extras = ["toml"]}
flake8-black = "^0.3.3"
flake8-isort = "^4.2.0"
flake8-bugbear = "^22.9.23"
flake8-simplify = "^0.19.3"
flake8-docstrings = "^1.6.0"
mypy = "^0.981"
[tool.coverage.run]
branch = true
source = ["src"]
[tool.coverage.report]
show_missing = true
fail_under = 80
[tool.pytest.ini_options]
testpaths=["tests"]
[tool.pyright]
include = ["src"]
[tool.mypy]
files = ["src", "tests"]
cache_dir = "${HOME}/.mypy_cache"
ignore_errors = false
disallow_untyped_defs = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"