-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.1 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "model-forge"
version = "0.0.1"
description = "An toolset to forge your own machine learning models."
authors = ["Bart van Woesik <bartwoesik1@gmail.com>"]
packages = [
{ include = "model_forge" },
]
[tool.poetry.dependencies]
python = "^3.11"
numpy = "^1.20.1"
pandas = "^1.2.2"
scikit-learn = "^1.4.0"
pytest = "^8.1.1"
pytest-asyncio = "0.23.5"
pytest-cov = "*"
omegaconf = "^2.3.0"
hydra-core = "^1.3.2"
ruff = "^0.3.7"
mkdocs = "^1.5.3"
pre-commit = "^3.7.0"
[tool.pytest.ini_options]
markers = [
"unit: Use this mark for all unit tests",
"integration: Use this mark for all integration tests",
"end2end: Use this mark for all end-to-end tests",
"plots: Use this mark for all tests that produce plots",
"asyncio: Use this mark for all tests concerning async callables"
]
log_cli = "true"
log_level = "DEBUG"
log_format = "%(asctime)s %(name)s %(levelname)s %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S"
addopts = "--cov=model_forge --cov-report xml --cov-report term-missing"