-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
60 lines (51 loc) · 1.41 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
[tool.poetry]
name = "labtech"
version = "0.6.1"
license = "GPL-3.0-only"
description = "Easily run experiment permutations with multi-processing and caching."
authors = ["Ben Denham <[email protected]>"]
readme = "README.md"
repository = "https://github.com/ben-denham/labtech"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = ">=3.10"
tqdm = "^4.66.2"
frozendict = "^2.4.0"
psutil = "^5.9.8"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
pytest-cov = "^3.0.0"
pytest-mock = "^3.10.0"
mkdocs = "^1.5.2"
mkdocstrings-python = "^1.5.2"
mkdocs-material = "^9.2.4"
mypy = "^1.9.0"
jupyterlab = "^4.1.5"
IPython = "8.23.0"
ipywidgets = "^8.1.2"
mlflow = "^2.10.0"
types-tqdm = "^4.66.0.20240417"
ruff = "^0.4.1"
types-psutil = "^5.9.5.20240516"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
plugins = ["labtech/mypy_plugin.py"]
[[tool.mypy.overrides]]
module="mlflow.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module="ipywidgets.*"
ignore_missing_imports = true
[tool.ruff]
line-length = 160
extend-exclude = ["tests/integration/readme/*.py"]
[tool.ruff.lint]
select = ["E", "F", "W", "I"]