-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
60 lines (50 loc) · 1.05 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 61.2.0",
"setuptools-scm >= 6.3.2",
"wheel >= 0.37.0",
]
[project]
name = "cr39py"
version = "2025.1"
authors = [
{name = "Peter Heuer"},
]
description = "Python package for analyzing CR39 particle track data"
readme = "README.md"
license = {file = "LICENSE.md"}
keywords = [
"CR39",
]
requires-python = ">=3.11"
dependencies = [
"fast_histogram",
"flexparser<0.4", # Pin required by pint
"h5py >= 3.8.0",
"ipython",
"matplotlib >= 3.7.0",
"numpy >= 1.24.0",
'pint>=0.24.3',
'scipy>=1.14.1',
"tqdm >= 4.65.0",
"setuptools >= 66.0.0",
]
[project.optional-dependencies]
tests = [
"pytest >= 8.3.1",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.codespell]
# Skip ipynb files because executed files have lots of strange symbols in them.
skip = '*.ipynb'
# Add false positives found by codespell to ignore-words-list
ignore-words-list = """
hax,
vax"""
[tool.coverage.run]
source = ["src"]
omit = [
"*/cr39py/tests/*",
]