-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 1.83 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (64 loc) · 1.83 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dynamic_data_reduction"
version = "2025.12.1"
description = "Dynamic MapReduce framework for data processing"
readme = "README.md"
license = "Apache-2.0"
authors = [
{name = "Ben Tovar", email = "btovar@nd.edu"},
]
maintainers = [
{name = "Ben Tovar", email = "btovar@nd.edu"},
]
keywords = ["mapreduce", "data-processing", "distributed-computing"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.11"
dependencies = [
"awkward>=2.8.1",
"coffea>=2025.3.0",
"fsspec>=2025.3.0",
"fsspec-xrootd>=0.5.1",
"numpy>=2.1.3",
"rich>=13.9.4",
"uproot>=5.6.0",
"xrootd>=5.8.1",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov>=2.0",
"black>=21.0",
"flake8>=3.8",
]
conda = [
"ndcctools>=7.15.8",
]
[project.scripts]
dynamic_data_reduction = "dynamic_data_reduction.main:main"
[project.urls]
Homepage = "https://github.com/btovar/dynamic_data_reduction"
Repository = "https://github.com/btovar/dynamic_data_reduction.git"
Documentation = "https://github.com/btovar/dynamic_data_reduction#readme"
"Bug Tracker" = "https://github.com/btovar/dynamic_data_reduction/issues"
[tool.setuptools_scm]
write_to = "src/dynamic_data_reduction/_version.py"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 88
target-version = ['py37']
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v --cov=dynamic_data_reduction --cov-report=term-missing"