-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
53 lines (45 loc) · 1.27 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
53
[tool.poetry]
name = "astro-tigger-lsm"
version = "1.7.4"
description = "Python libraries and command-line tools for manipulating Tigger LSMs"
authors = ["Oleg Smirnov <[email protected]>"]
readme = "README.rst"
packages = [
{include = "Tigger"},
]
[tool.poetry.dependencies]
python = "^3.8"
astro-kittens = "^1.4.6"
numpy = [
{ version = ">=2.0.0", python = ">=3.12"},
{ version = "<2.0.0", python = ">=3.8, <3.12"}
]
scipy = [
{ version = ">=1.13.0", python = ">=3.12"},
{ version = "<1.13.0", python = ">=3.8, <3.12"}
]
astlib = [
{ version = ">=0.12.0", python = ">=3.12"},
{ version = "<=0.11.10", python = ">=3.8, <3.12"},
{ version = "<=0.11.8", python = "<3.8"}
]
astropy = [
{ version = ">=6.1.0", python = ">=3.12"},
{ version = "<6.1.0", python = ">=3.8, <3.12"}
]
future = "*"
python-casacore = "*"
meqtrees-cattery = "^1.7.9"
[tool.poetry.scripts]
tigger-convert = "Tigger.bin.tigger_convert:main"
tigger-tag = "Tigger.bin.tigger_tag:main"
tigger-restore = "Tigger.bin.tigger_restore:main"
tigger-make-brick = "Tigger.bin.tigger_make_brick:main"
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.tests.dependencies]
pytest = "^7.1.3"
flake8 = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"