-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (36 loc) · 1.23 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
[tool.poetry]
name = "h5darkframes"
version = "0.1.4"
description = "python API for creating and using hdf5 darkframes libraries "
authors = [
"Vincent Berenz <[email protected]>",
]
packages = [
{ include = "h5darkframes" },
]
license = "BSD-3-Clause"
readme = "readme.md"
homepage = "https://github.com/MPI-IS/h5darkframes"
repository = "https://github.com/MPI-IS/h5darkframes"
[tool.poetry.dependencies]
python = ">=3.8,<4"
numpy = "^1.23.4"
alive-progress = "^2.4.1"
h5py = "^3.7.0"
toml = "^0.10.2"
opencv-python = "4.5.1.48"
pytest = "^7.1.3"
rich = "^12.6.0"
[tool.poetry.scripts]
darkframes-zwoasi-config = 'h5darkframes.main:asi_zwo_darkframes_config'
darkframes-zwoasi-library = 'h5darkframes.main:asi_zwo_darkframes_library'
darkframes-info = 'h5darkframes.main:darkframes_info'
darkframes-display = 'h5darkframes.main:darkframes_display'
darkframes-fuse = 'h5darkframes.main:fuse'
darkframes-neighbors = 'h5darkframes.main:darkframes_neighbors'
darkframes-validation = 'h5darkframes.main:darkframes_validation'
darkframes-substract = 'h5darkframes.main:darkframes_substract'
darkframes-perform = 'h5darkframes.main:darkframes_perform'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"