generated from broomva/databricks_session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (33 loc) · 821 Bytes
/
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
[tool.poetry]
name = "hyperopt-prophet"
version = "0.2.4"
description = "Integration of prophet forecasting with hyperopt, mlflow"
authors = ["Carlos D. Escobar-Valbuena <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
{include = "hyperopt_prophet"},
{include = "main.py"}
]
[tool.poetry.dependencies]
python = "^3.8"
prophet = "1.1.1"
holidays = "0.24"
plotly = "5.15.0"
pandas = "^2.0.3"
pydantic = "^2.1.0"
hyperopt = "0.2.7"
mlflow = "2.5.0"
cloudpickle = "^2.2.1"
cython = "^3.0.0"
mlflowops = '^0.1.2'
nbformat = "^5.9.1"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
pytest = "^7.4.0"
pylint = "^2.17.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
hyperopt_prophet = 'hyperopt_prophet:entrypoint'