generated from databricks-industry-solutions/industry-solutions-blueprints
-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
47 lines (44 loc) · 826 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
39
40
41
42
43
44
45
46
47
[project]
name = "mmf_sa"
version = "0.0.1"
dependencies = [
#"rpy2==3.5.16", # causes issue when deploying the model to Model Serving
"kaleido==0.2.1",
"Jinja2",
"omegaconf==2.3.0",
"statsforecast==1.7.4",
"neuralforecast==1.7.2",
"missingno==0.5.2",
"tbats==1.1.3",
"sktime==0.29.0",
"lightgbm==4.3.0",
"datasetsforecast==0.0.8",
"fugue==0.9.0",
]
[project.optional-dependencies]
tests = [
"setuptools",
"wheel",
"pyyaml",
"dbx",
"pytest",
"pytest-cov",
"pyspark==3.3.0",
"PyArrow>=1.0.0",
"sqlalchemy",
"alembic",
"hyperopt",
"plotly",
"black",
"datasetsforecast"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"mmf_sa/",
]
exclude = [
"/tests",
]