-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
69 lines (62 loc) · 1.66 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
[project]
name = "attpc_spyral"
version = "0.17.0"
description = "AT-TPC analysis pipeline"
authors = [
{name = "gwm17", email = "[email protected]"},
{name = "turinath", email = "[email protected]"},
]
dependencies = [
"spyral-utils>=1.2.0",
"contourpy>=1.2.1",
"h5py>=3.11.0",
"lmfit>=1.3.0",
"numba>=0.59.1",
"scikit-learn>=1.4.2",
"tqdm>=4.65.0",
"rocket-fft>=0.2.5",
"typing-extensions>=4.11.0",
"psutil>=5.9.8",
"python-dotenv>=1.0.1",
]
requires-python = ">=3.10,<3.13"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
"Typing :: Typed"
]
[project.urls]
Documentation = "https://attpc.github.io/Spyral"
Repository = "https://github.com/ATTPC/Spyral"
Issues = "https://github.com/ATTPC/Spyral/issues"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
test = [
"pytest>=8.2.0",
]
lint = [
"ruff>=0.5.7",
]
doc = [
"mkdocs-material>=9.5.21",
"mkdocstrings>=0.25.1",
"mkdocstrings-python>=1.10.0",
]
[tool.ruff.lint]
select = ["E", "F", "B"]
ignore = ["E501"]