forked from elehcimd/mltraq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (68 loc) · 1.86 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
65
66
67
68
69
70
71
72
73
74
75
[tool.poetry]
name = "mltraq"
version = "0.1.156"
description = "Track and Collaborate on ML & AI Experiments."
authors = ["Michele Dallachiesa <[email protected]>"]
license = "BSD-3"
readme = "README.md"
homepage = "https://mltraq.com/"
repository = "https://github.com/elehcimd/mltraq"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved",
"Intended Audience :: Science/Research",
]
include = [
"LICENSE",
]
[tool.poetry.scripts]
mltraq = "mltraq.cli:main"
[tool.poetry.dependencies]
python = ">=3.9.0"
pandas = ">=1.5.3"
pyarrow = ">=10.0.0"
joblib = ">=1.4.0"
sqlalchemy = ">=2.0.0"
cloudpickle = ">=2.2.0"
tqdm = ">=4.64.1"
tabulate = ">=0.9.0"
[tool.poetry.group.dev.dependencies]
jupyterlab = ">=4.0.10"
ipywidgets = ">=8.0.2"
pytest = ">=7.2.0"
black = {extras = ["jupyter"], version = ">=22.10.0"}
ruff = ">=0.0.128"
pytest-cov = ">=4.0.0"
pylint = ">=2.15.9"
pytest-xdist = ">=3.6.1"
mkdocs-material = ">=8.5.11"
mkdocs-macros-plugin = ">=0.7.0"
mkdocstrings = {extras = ["python"], version = ">=0.19.1"}
mkdocs-charts-plugin = ">=0.0.10"
mdx-include = ">=1.4.2"
anybadge = ">=1.14.0"
matplotlib = ">=3.6.2"
certifi = ">=2022.12.7"
pyspellchecker = ">=0.8.1"
mypy = ">=1.8.0"
pandas-stubs = ">=2.1.4.231227"
pyinstrument = ">=4.6.2"
scikit-learn = ">=1.4.0"
psycopg2-binary = ">=2.9.9"
ray = {extras = ["default"], version = ">=2.9.3"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target_version = ["py37"]
preview = true
[tool.ruff]
line-length = 120
lint.select = ["E", "F", "I", "U", "S", "C", "B", "A", "T", "Q", "BLE", "C", "ERA"] # ANN FBT
target-version = "py37"
lint.ignore = ["A003", "S101", "T201", "T203", "S311", "UP007"]
extend-include = ["*.ipynb"]
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = ["ignore::DeprecationWarning"]