-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
112 lines (103 loc) · 2.39 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "flowcept"
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = [
"flask-restful",
"msgpack",
"omegaconf",
"pandas",
"psutil>=6.1.1",
"py-cpuinfo",
"redis",
"requests",
"lmdb",
"pyarrow"
]
authors = [{name = "Oak Ridge National Laboratory"}]
description = "Capture and query workflow provenance data using data observability"
readme = "README.md"
license = "MIT"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
keywords = [
"ai",
"ml",
"machine-learning",
"provenance",
"lineage",
"responsible-ai",
"databases",
"big-data",
"provenance",
"tensorboard",
"data-integration",
"scientific-workflows",
"dask",
"reproducibility",
"workflows",
"parallel-processing",
"lineage",
"model-management",
"mlflow",
"responsible-ai",
"data-analytics"
]
[project.urls]
GitHub = "https://github.com/ORNL/flowcept"
[project.optional-dependencies]
analytics = ["seaborn", "plotly", "scipy"]
mongo = ["pymongo"]
dask = ["tomli", "dask[distributed]<=2024.10.0"]
docs = ["sphinx", "furo"]
kafka = ["confluent-kafka"]
mlflow = ["mlflow-skinny", "SQLAlchemy", "alembic", "watchdog"]
nvidia = ["nvidia-ml-py"]
tensorboard = ["tensorboard", "tensorflow", "tbparse"]
dev = [
"flowcept[docs]",
"jupyterlab",
"nbmake",
"pika",
"pytest",
"ruff",
"pyyaml",
]
# Torch and some other ml-specific libs, only used for dev purposes, require the following specific versions.
ml_dev = [
"torch==2.2.2",
"torchvision==0.17.2",
"torchtext==0.17.2",
"datasets==2.17.0",
"numpy<2.0",
"sacremoses",
"nltk"
]
all = [
"flowcept[mongo]",
"flowcept[analytics]",
"flowcept[dask]",
"flowcept[kafka]",
"flowcept[mlflow]",
"flowcept[tensorboard]",
"flowcept[dev]",
]
[tool.hatch.version]
path = "src/flowcept/version.py"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
extend-select = ["E501", "D"]
ignore = ["D200", "D212", "D105", "D401", "D205", "D100"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.hatch.build.targets.wheel]
packages = ["src/flowcept"]
[tool.hatch.build.targets.wheel.force-include]
"resources/sample_settings.yaml" = "resources/sample_settings.yaml"