-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 940 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 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
[tool.poetry]
name = "DeepBench"
version = "0.2.3"
description = "Physics Benchmark Dataset Generator"
license = "Apache 2.0"
authors = ["M. Voetberg <maggiev@fnal.gov>", "Ashia Livaudais", "Becky Nevin", "Omari Paul", "Brian Nord"]
maintainers = ["M. Voetberg <maggiev@fnal.gov>", "Brian Nord <bnord@fnal.gov"]
readme = "README.md"
homepage = "https://github.com/deepskies/DeepBench"
repository = "https://github.com/deepskies/DeepBench"
documentation = "https://deepbench.readthedocs.io/en/latest/"
[tool.poetry.dependencies]
python = ">=3.12,<4.0,"
numpy = ">=1.25.0"
matplotlib = ">=3.7.1"
scikit-image = "^0.23.0"
astropy = ">=7.0.0"
autograd = ">=1.5"
pyyaml = ">=6.0"
h5py = ">=3.9.0"
[tool.poetry.group.dev.dependencies]
sphinx = "^7.0.1"
sphinx-autodoc-typehints = "^1.23.2"
pytest-cov = "^4.0.0"
pytest = "^7.3.1"
pre-commit = "^3.2.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"