-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 940 Bytes
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 940 Bytes
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
[project]
name = "naima"
description = "Derivation of non-thermal particle distributions through MCMC spectral fitting"
readme = "README.rst"
authors = [{ name = "Víctor Zabalza", email = "vzabalza@gmail.com" }]
license = "MIT"
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = [
"astropy>=6.1",
"corner>=2.0",
"emcee>=3.0",
"h5py>=3.14.0",
"matplotlib>=3.10.0",
"numpy>=2.0",
"pyyaml>=6.0.2",
"scipy>=1.15.3",
]
[dependency-groups]
dev = ["pytest>=8.3.5", "sphinx>=8.0", "sphinx-astropy>=1.9.1"]
[tool.hatch.version]
source = "vcs"
[tool.ruff.lint]
extend-select = ["I"]
[tool.ruff.lint.isort]
known-first-party = ["naima"]
[tool.ruff.lint.extend-per-file-ignores]
"src/naima/version.py" = ["I001"]
[tool.hatch.build.hooks.vcs]
version-file = "src/naima/version.py"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"