-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
32 lines (29 loc) · 935 Bytes
/
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
[tool.poetry]
name = "DeepBench"
version = "0.2.3"
description = "Physics Benchmark Dataset Generator"
license = "Apache 2.0"
authors = ["M. Voetberg <[email protected]>", "Ashia Livaudais", "Becky Nevin", "Omari Paul", "Brian Nord"]
maintainers = ["M. Voetberg <[email protected]>", "Brian Nord <[email protected]"]
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.10,<4.0,"
numpy = "^1.25.0"
matplotlib = "^3.7.1"
scikit-image = "^0.23.0"
astropy = "^5.2.2"
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"