-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 752 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 752 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
[project]
name = "snapanalysis"
version = "0.1.0"
description = "A package for analyzing N-body snapshots from Gadget and Arepo."
readme = "README.md"
authors = [
{ name = "hfoote", email = "haydenfoote@arizona.edu" }
]
requires-python = ">=3.11"
dependencies = [
"astropy>=5.0",
"h5py>=3.7.0",
"matplotlib>=3.8",
"numpy>=1.20,<2.0.0",
"scipy>=1.11.4",
]
[project.scripts]
snapanalysis = "snapanalysis:main"
[build-system]
requires = ["uv_build>=0.9.10,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.0.1",
"ruff>=0.14.5",
]
[project.urls]
Homepage = "https://github.com/hfoote/snapAnalysis"
Issues = "https://github.com/hfoote/snapAnalysis/issues"
[tool.ruff.lint]
select = ["E", "F"]