-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (40 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
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "mandible"
version = "0.9.0"
description = "A generic framework for writing satellite data ingest systems"
authors = ["Rohan Weeden <[email protected]>", "Matt Perry <[email protected]>"]
license = "APACHE-2"
readme = "README.md"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = ">=3.8"
# Required
s3fs = ">=0.4.2"
# Optional
h5py = { version = "^3.6.0", optional = true }
jsonpath-ng = { version = "^1.4.0", optional = true }
lxml = { version = "^4.9.2", optional = true }
# Numpy is pinned to a minimum version by h5py. Unpinning here means our
# requirements will always match those of h5py.
numpy = { version = "*", optional = true }
[tool.poetry.extras]
all = ["h5py", "numpy", "jsonpath-ng", "lxml"]
h5 = ["h5py", "numpy"]
jsonpath = ["jsonpath-ng"]
xml = ["lxml"]
[tool.poetry.group.dev.dependencies]
boto3 = "^1.18"
moto = "^5.0.0"
pytest = "^8.0.2"
pytest-cov = "^4.0.0"
pytest-mock = "^3.8.2"
[tool.pytest.ini_options]
markers = [
"h5: requires the 'h5' extra to be installed",
"jsonpath: requires the 'jsonpath' extra to be installed",
"xml: requires the 'xml' extra to be installed",
]
[tool.isort]
profile = "black"