-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (71 loc) · 2.41 KB
/
pyproject.toml
File metadata and controls
82 lines (71 loc) · 2.41 KB
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
[build-system]
build-backend = "mesonpy"
requires = ["meson>=1.5.0,<1.10.0", "meson-python>=0.15.0"]
[project]
name = "dftracer-analyzer"
dynamic = ["version"]
description = "Analyze, visualize, and understand I/O performance issues in HPC workflows"
authors = [{ name = "Izzet Yildirim", email = "izzetcyildirim@gmail.com" }]
maintainers = [{ name = "Izzet Yildirim", email = "izzetcyildirim@gmail.com" }]
requires-python = ">3.8, <3.13"
readme = { file = "README.md", content-type = "text/markdown" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Build Tools",
"Typing :: Typed",
]
dependencies = [
"betterset>=0.2.0",
"dask[bag,dataframe,distributed]>=2024.1.0,<2025",
"dask_jobqueue>=0.8.0",
"hydra-core~=1.3.0",
"inflect==7.0",
"numpy>=2.0.0",
"pandas>=2.2.0,<3.0.0",
"portion>=2.4.0",
"pyarrow>=13",
"rich~=14.1.0",
"strenum>=0.4",
"structlog>=25",
"dftracer-utils>=0.0.5",
]
[project.optional-dependencies]
darshan = ["darshan>=3.4"]
[project.scripts]
dfanalyzer = "dftracer.analyzer.__main__:main"
dfanalyzer-cluster = "dftracer.analyzer.cluster:main"
[project.urls]
documentation = "https://dfanalyzer.readthedocs.io/en/latest/"
source = "https://github.com/LLNL/dfanalyzer"
tracker = "https://github.com/LLNL/dfanalyzer/issues"
[tool.meson-python.args]
install = ["--skip-subprojects"]
[tool.pyright]
exclude = ["build/", "subprojects/", "tmp/"]
[tool.pytest.ini_options]
markers = [
"smoke: minimal test subset for quick validation (select with '-m smoke')",
"full: comprehensive test suite with all parameter combinations (select with '-m full')",
]
filterwarnings = [
"ignore:The distutils package is deprecated and slated for removal.*:DeprecationWarning",
]
[tool.ruff]
line-length = 119
[tool.ruff.format]
quote-style = "preserve"
[tool.spin]
package = 'dftracer.analyzer'
[tool.setuptools_scm]
local_scheme = "no-local-version"
version_file = "python/dftracer/analyzer/_version.py"