-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (47 loc) · 1.13 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
55
[tool.isort]
profile = "black"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "mlex_utils"
version = "0.0.1"
description = "MLExchange Utils"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11"
# All dependencies are optional
# Use pip install mlex_utils[all] to get everything
dependencies = []
[project.optional-dependencies]
all = [
"prefect==2.14.21",
"dash==2.9.3",
"dash-bootstrap-components==1.6.0",
"dash-mantine-components==0.12.1",
"dash-core-components==2.0.0",
"dash-html-components==2.0.0",
"dash-iconify==0.1.2",
"griffe >= 0.49.0, <1.0.0",
]
prefect = [
"prefect==2.14.21",
"griffe >= 0.49.0, <1.0.0",
]
dash = [
"dash==2.9.3",
"dash-bootstrap-components==1.6.0",
"dash-mantine-components==0.12.1",
"dash-core-components==2.0.0",
"dash-html-components==2.0.0",
"dash-iconify==0.1.2",
]
dev = [
"black==24.2.0",
"dash[testing]==2.9.3",
"flake8==7.0.0",
"isort==5.13.2",
"pre-commit==3.6.2",
"pytest==8.1.1",
]