This repository was archived by the owner on Apr 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (56 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
61 lines (56 loc) · 1.71 KB
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
[tool.poetry]
name = "cortex-python"
version = "6.4.0"
description = "Python module for the Tecnotree Sensa Platform"
authors = ["Tecnotree <support@tecnotree.com>"]
readme = "README.md"
packages = [{include='cortex/**/*.py'}]
license = "Apache-2.0"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
requests = ">=2.31.0,<3,"
requests-toolbelt = ">=1.0.0,"
pyyaml = ">=5.4.1,"
python-dateutil = ">=2.8.2,<3,"
pyjwt = { version="<3", extras=["crypto"] }
cuid = ">=0.4,<1,"
dill = ">=0.3.6,"
matplotlib= { version=">3,<4", optional=true}
seaborn = { version=">0.13,<0.14", optional=true}
pandas = { version="<3", optional=true}
ipython = { version=">=8.10,<9", optional=true}
jinja2={ version="<4", optional=true}
# TODO Consider using mlflow-skinny ?
mlflow={ version=">1", optional=true}
pytimeparse2 = "^1.7.1"
jupyter = "^1.0.0"
[tool.poetry.group.dev.dependencies]
setuptools = "^69.2.0"
tox = ">=3.0,<4.0"
twine = ">=3.0,<4.0"
wheel = "^0.43.0"
requests-mock = ">=1.10.0"
pipdeptree = "^2.16.1"
pytest = ">=8,<9"
pylint = ">=2.16.1,<3"
pytest-html = ">=3.2.0,<4"
pytest-cov = ">=4.0.0,<5.0.0"
cuid = "^0.4"
black = "<25"
sphinx = "^7.2.6"
gitpython = "^3.1.42"
sphinx-multiversion = "^0.2.4"
sphinx-rtd-theme = "^2.0.0"
sphinxcontrib-restbuilder = "^0.3"
[tool.poetry.extras]
# Basic dependencies for developing models within jupyter
models_dev = ["mlflow","ipython", "jinja2", "matplotlib", "seaborn", "pandas"]
# dependencies for running models as skills
models_runtime=["mlflow"] ## certifai
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
# Wrapper around poetry.core.masonry.api
build-backend = "poetry_dynamic_versioning.backend"