-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.52 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
[tool.poetry]
name = "hyperseti"
version = "1.1.0"
description = "GPU-accelerated code for searching radio astronomy spectral datasets for narrowband technosignatures (SETI)"
authors = ["Danny C. Price"]
license = "MIT"
readme = "README.md"
keywords = ["seti", "technosignatures", "breakthrough-listen", "radio-astronomy"]
include = ["hyperseti/io/hit_db_schema.yml"]
documentation = "https://hyperseti.readthedocs.io"
homepage = "https://hyperseti.readthedocs.io"
repository = "https://github.com/UCBerkeleySETI/hyperseti"
[tool.poetry.dependencies]
python = ">=3.8"
numpy = ">=1.21"
cupy = ">=10.0"
pandas = ">=2.0"
h5py = ">=3.8"
pyyaml = ">=6.0"
Logbook = ">=1.4"
astropy = ">=5.0"
setigen = ">=2.0"
hdf5plugin = ">=4.0"
matplotlib = ">=3.5"
[tool.poetry.scripts]
findET = "hyperseti.findET:cmd_tool"
tsdat = "hyperseti.tsdat:cmd_tool"
hyperfrost = "hyperseti.hyperfrost.cmd_tool:cmd_tool"
[tool.poetry.group.test.dependencies]
pytest = ">=7.2"
turbo_seti = ">=2.3"
blimpy = ">=2.0"
[tool.poetry.group.docs.dependencies]
coverage = ">=7.2"
codecov = ">=2.1"
pytest-runner = ">=6.0"
pytest-codecov = ">=0.5"
sphinx = ">=6.0"
sphinx-rtd-theme = ">=1.2"
myst-parser = ">=1.0"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--verbose --cov=hyperseti test/"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"