-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 870 Bytes
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 870 Bytes
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
[tool.poetry]
name = "ncdjango"
version = "1.5.0"
description = "A NetCDF mapserver app for Django"
authors = ["Conservation Biology Institute"]
license = "BSD-3-Clause"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
]
packages = [{ include = "ncdjango" }]
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
requests = "*"
Django = ">=5.2.0"
Pillow = ">=9.0.1,<11.0.0"
Shapely = ">=1.7.0"
django-tastypie = "^0.15.0"
netCDF4 = ">=1.5.3"
numpy = "^2.4.4"
pyproj = "*"
Fiona = "*"
rasterio = "*"
ply = "*"
celery = "^5.2.3"
djangorestframework = "*"
trefoil = "^0.4.2"
[tool.poetry.group.dev.dependencies]
pytest-django = "^4.5.2"
ruff = "^0.12.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"