forked from CoffeaTeam/coffea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
128 lines (122 loc) · 2.88 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
[build-system]
requires = ["hatchling>=1.17.1", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "coffea"
description = "Basic tools and wrappers for enabling not-too-alien syntax when running columnar Collider HEP analysis."
readme = "README.rst"
license = {text = "BSD-3-Clause"}
requires-python = ">=3.8"
authors = [
{ name = "Lindsey Gray", email = "[email protected]" },
{ name = "Nick Smith", email = "[email protected]" },
]
maintainers = [
{ name = "Lindsey Gray", email = "[email protected]" },
{ name = "Nick Smith", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development",
"Topic :: Utilities",
]
dependencies = [
"awkward>=2.5.2",
"uproot>=5.2.1",
"dask[array]>=2023.4.0",
"dask-awkward>=2024.1.2",
"dask-histogram>=2023.10.0",
"correctionlib>=2.3.3",
"pyarrow>=6.0.0",
"fsspec-xrootd>=0.2.3",
"matplotlib>=3",
"numba>=0.58.1",
"numpy>=1.22.0",
"scipy>=1.1.0",
"tqdm>=4.27.0",
"lz4",
"cloudpickle>=1.2.3",
"toml>=0.10.2",
"mplhep>=0.1.18",
"packaging",
"pandas",
"hist>=2",
"cachetools",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/coffeateam/coffea"
"Bug Tracker" = "https://github.com/coffeateam/coffea/issues"
[project.optional-dependencies]
dask = [
"distributed>=2023.4.0",
"bokeh!=3.0.*,>=2.4.2",
"blosc",
]
spark = [
"ipywidgets",
"pyspark>=3.3.0",
"jinja2",
]
parsl = [
"parsl>=2022.12.1"
]
servicex = [
"aiostream",
"tenacity",
"servicex>=2.5.3",
"func-adl_servicex",
]
rucio = [
"rucio-clients>=32;python_version>'3.8'",
"rucio-clients<32;python_version<'3.9'",
]
dev = [
"pre-commit",
"flake8",
"black",
"pytest",
"pytest-cov",
"pytest-mpl",
"pytest-asyncio",
"pytest-mock",
"sphinx",
"nbsphinx",
"sphinx-rtd-theme",
"sphinx-automodapi",
"sphinx-copybutton>=0.3.2",
"pyinstrument",
"ipython",
"distributed>=2023.4.0",
]
#[project.entry-points."dask.sizeof"]
#coffea = "coffea.sizeof:register"
[tool.hatch]
version.source = "vcs"
build.hooks.vcs.version-file = "src/coffea/_version.py"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
addopts = [
"-rfesxX",
"-v",
]
log_cli_level = "DEBUG"
filterwarnings = [
"ignore:There is no current event loop",
]