-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (38 loc) · 1.23 KB
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
[tool.poetry]
name = "bignbit"
version = "0.9.0a8"
description = "Browse image generation and transfer"
authors = ["PO.DAAC <podaac@jpl.nasa.gov>"]
license = "Apache 2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
aiohttp = "^3.14"
boto3 = "^1.40"
cumulus-message-adapter = "^2.0"
harmony-py = "^1.5.0"
cumulus-process = "^1.7.0"
python-graphql-client = "^0.4.3"
urllib3 = "^2.7"
requests = "^2.34.2"
# GDAL is optional so that conda/micromamba can own it during local dev and CI (where it
# provides libgdal.so alongside the python bindings; see conda-environment.yaml). Only the
# Docker build activates the "gdal" extra, building the PyPI bindings against the osgeo/gdal
# base image's libgdal -- so this version must match docker/Dockerfile's GDAL_VERSION, not
# necessarily the (newer) GDAL pinned for dev/CI in conda-environment.yaml.
gdal = {version = "3.12.4", optional = true}
importlib-resources = "^7.1.0"
[tool.poetry.extras]
gdal = ["gdal"]
[tool.poetry.group.dev.dependencies]
pytest = "^9.1.1"
moto = "^5.2.2"
pylint = "^4.0.6"
flake8 = "^7.3.0"
pytest-cov = "^7.1.0"
boto3-stubs = "^1.40"
vcrpy = "^8.2.1"
pytest-recording = "^0.13.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"