-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathpyproject.toml
54 lines (43 loc) · 1.21 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 = "mlops_for_databricks"
version = "0.1.0"
description = "Full CICD deployment of mlops for Databricks"
license = "MIT"
authors = [
"Ciaran Hamill Diamond"
]
repository = "https://github.com/python-poetry/poetry"
homepage = "https://python-poetry.org"
# README file(s) are used as the package description
readme = ["README.md", "LICENSE"]
# Keywords (translated to tags on the package index)
keywords = ["packaging", "poetry"]
packages = [
{include = "dbx_utils", from = "src/pkg"},
{include = "nyc_taxi", from = "src/pkg"},
{include = "ciaran_experiments", from = "experiments/notebooks"}
]
[tool.poetry.dependencies]
# All Packages Destined For Databricks Cluster
# Only Install Pacakages Here That Are Not Already Installed On Databricks Cluster
python = ">=3.8, <3.11"
numpy = "^1.24.3"
dbx = "^0.8.18"
pytest = "^7.3.2"
pytest-cov = "^4.1.0"
bandit = "1.7.4"
pylint = "2.15.0"
pylint_junit = "0.3.2"
python-dotenv = "1.0.0"
pyspark = "3.2.1"
delta-spark = "1.1.0"
packaging = "21.*"
mlflow-databricks-artifacts = "2.0.0"
databricks-cli = "0.17.7"
scikit-learn = "^1.2.2"
lightgbm = "^3.3.5"
pyyaml = "^6.0"
pathlib = "^1.0.1"
argparse = "^1.4.0"
[tool.poetry.extras]
[tool.poetry.scripts]