-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (60 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
67 lines (60 loc) · 1.56 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
[build-system]
requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ndlar_flow"
description = "An h5flow-based analysis framework for DUNE ND-LAr simulation and data"
readme = { file = "README.rst", content-type = "text/x-rst" }
authors = [
{ name = "Peter Madigan" }
]
maintainers = [
{ name = "Yifan Chen" },
{ name = "Matt Kramer" },
{ name = "Noe Roy" },
{ name = "Kevin Wood" },
]
requires-python = ">=3.7"
license = "Apache-2.0"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Physics"
]
dynamic = ["version"]
dependencies = [
"h5py>=2.10",
"pytest",
"scipy",
"scikit-image",
"scikit-learn>=1.3.0",
"dbscan1d==0.2.3",
"h5flow @ git+https://github.com/DUNE/h5flow.git#egg=h5flow",
"pylandau @ git+https://github.com/SiLab-Bonn/pylandau.git",
"adc64format @ git+https://github.com/larpix/adc64format.git@v0.1.5#egg=adc64format",
]
[tool.setuptools.dynamic]
version = { file = "VERSION" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
indent-width = 4
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
line-ending = "auto"
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"I", # isort
]
ignore = ["E501"]
[tool.mypy]
disable_error_code = ["import-untyped"]