-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (42 loc) · 1.02 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
[project]
name = "mlops-with-databricks"
version = "0.0.1"
description = "MLOps with Databricks"
readme = "README.md"
requires-python = ">=3.11, <3.12"
dependencies = [
"lightgbm>=4.5.0, <5",
"scikit-learn>=1.5.1, <2",
"cloudpickle>=3.0.0, <4",
"mlflow>=2.16.0, <3",
"numpy>=1.26.4, <2",
"pandas>=2.2.2, <3",
"pyarrow>=15.0.2, <16",
"cffi>=1.17.1, <2",
"scipy>=1.14.1, <2",
"matplotlib>=3.9.2, <4",
"databricks-feature-engineering>=0.6, <1",
"pre-commit>=4.0.1",
"pydantic>=2.9.2",
]
[project.optional-dependencies]
dev = ["databricks-connect>=15.4.1, <16",
"databricks-sdk>=0.32.0, <0.33",
"ipykernel>=6.29.5, <7",
"pip>=24.2"]
[tool.ruff]
line-length = 120
select = [
"F", # pyflakes rules
"E", # pycodestyle error rules
"W", # pycodestyle warning rules
"B", # flake8-bugbear rules
"I", # isort rules
]
ignore = [
"E501", # line-too-long
]
[tool.ruff.format]
indent-style = "space"
[tool.setuptools]
packages = ["loan_prediction"]