forked from getindata/kedro-azureml
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
65 lines (55 loc) · 1.74 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
[tool.poetry]
name = "kedro-azureml"
version = "0.8.0"
description = "Kedro plugin with Azure ML Pipelines support"
readme = "README.md"
authors = ['marcin.zablocki <[email protected]>']
maintainers = ['GetInData MLOPS <[email protected]>']
homepage = "https://github.com/getindata/kedro-azureml"
repository = "https://github.com/getindata/kedro-azureml"
documentation = "https://kedro-azureml.readthedocs.io/"
keywords = ['kedro', 'mlops', 'azureml', 'machinelearning']
license = "Apache-2.0"
classifiers = [
"Development Status :: 4 - Beta", # license and python versions added automatically
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
branch = true
relative_files = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError"
]
[tool.isort]
known_third_party = ["azure", "tabulate", "pydantic","semver","setuptools"]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
kedro = ">=0.18.13,<0.19"
cloudpickle = "^2.1.0"
adlfs = ">=2022.2.0"
azure-ai-ml = ">=1.2.0"
azureml-mlflow = { version = ">=1.42.0", optional = true}
pydantic = "~=2.6.4"
mlflow = {version = ">2.0.0,<3.0.0", optional = true}
backoff = "^2.2.1"
kedro-datasets = ">=1.0.0"
azureml-fsspec = "~=1.3.1"
pyarrow = ">=11.0.0"
[tool.poetry.extras]
mlflow = ["azureml-mlflow", "mlflow"]
[tool.poetry.dev-dependencies]
pytest = "<7"
pytest-cov = ">=2.8.0, <4.0.0"
tox = ">=3.25.1"
pre-commit = "2.20.0"
numpy = "1.23.1"
pandas = "^1.4.3"
[tool.poetry.plugins] # Optional super table
[tool.poetry.plugins."kedro.project_commands"]
"azureml" = "kedro_azureml.cli:commands"
[tool.poetry.plugins."kedro.hooks"]
"azure_local_run_hook" = "kedro_azureml.hooks:azureml_local_run_hook"