-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
71 lines (64 loc) · 1.95 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "breizorro"
version = "0.1.3"
description = "Creates a binary mask given a FITS image"
authors = ["Ian Heywood & RATT <[email protected]>"]
readme = "README.rst"
homepage = "https://github.com/ratt-ru/breizorro"
repository = "https://github.com/ratt-ru/breizorro.git"
keywords = ["Astronomy", "Masking", "Imaging"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Astronomy"
]
license = "GNU GPL v3"
packages = [
{include = "breizorro"},
]
[tool.poetry.scripts]
breizorro = "breizorro.main:driver"
[tool.poetry.dependencies]
python = ">=3.8, <3.13"
astropy = [
{ version = ">=6.1.0", python = ">=3.12"},
{ version = "<6.1.0", python = ">=3.8, <3.12"}
]
numpy = [
{ version = ">=2.0.0", python = ">=3.12"},
{ version = "<2.0.0", python = ">=3.8, <3.12"}
]
omegaconf = "*"
regions = "*"
scipy = [
{ version = ">=1.13.0", python = ">=3.12"},
{ version = "<1.13.0", python = ">=3.8, <3.12"}
]
stimela = ">=2.0"
# Optional dependencies start here
bokeh = { version = "*", optional = true}
photutils = { version = "*", optional = true}
pytest = { version = "*", optional=true }
pytest-flake8 = { version = "*", optional=true }
scikit-image = { version = "*", optional = true}
[build-system]
requires = ["setuptools", "poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
all = ["bokeh", "photutils", "scikit-image"]
gui = ["bokeh"]
testing = ["pytest", "pytest-flake8"]
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.tests.dependencies]
pytest = "*"
flake8 = "*"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
Sphinx = "^5.3.0"
sphinx-copybutton = "^0.5.0"
furo = "^2022.9.15"