-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.12 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
[tool.poetry]
name = "ml-management-tools"
version = "0.1.0"
description = ""
authors = ["chck <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.6, <3.9"
sacred = "^0.8.1"
hydra-core = "^0.11.3"
mlflow = "^1.8.0"
jupyterlab = "^2.1.2"
kaggle = "^1.5.6"
matplotlib = "^3.2.1"
scikit-learn = "^0.22.2"
catboost = "^0.23"
tensorflow = "2.1.*"
optuna = "^1.4.0"
scikit-optimize = "^0.7.4"
apache-airflow = "^1.10.10"
neptune-tensorboard = "^0.3.11"
tensorflow-estimator = "2.1.*"
lightgbm = "^2.3.1"
kedro = "^0.16.1"
google-cloud-storage = "^1.28.1"
[tool.poetry.dependencies.tensorflow-docs]
git = "https://github.com/tensorflow/docs"
[tool.poetry.dependencies.neptune-contrib]
extras = ["monitoring"]
version = "^0.20.0"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
isort = "^4.3.21"
autoflake = "^1.3.1"
mypy = "^0.770"
vulture = "^1.4"
[tool.black]
line-length = 120
[tool.isort]
recursive = "True"
multi_line_output = 3
include_trailing_comma = "True"
force_grid_wrap = 0
use_parentheses = "True"
line_length = 120
[build-system]
requires = ["poetry-core>=1.0.0a5"]
build-backend = "poetry.core.masonry.api"