-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (53 loc) · 1.48 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
[tool.poetry]
name = "ce"
version = "3.6.4"
description = "PCIC's Climate Explorer (CE)"
authors = [
"Rod Glover <[email protected]>",
"James Hiebert <[email protected]>",
"Nik Rados",
"Lee Zeman <[email protected]>",
"Jonathan Helfrich",
"Ada Sungar",
"Cairo Sanders",
"Quintin Sparks <[email protected]>",
"Basil Veerman",
"Eric Yvorchuk <[email protected]"
]
license = "GPL3"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8,<4"
Flask = "<3.0.0"
Flask-SQLAlchemy = "<3.0.0" # minimum supported version of SQLAlchemy is 1.4.18
Flask-Cors = "*"
shapely = ">1.6"
numpy = "~=1.20"
GDAL = ">=3.3.0,<3.4"
rasterio = "~=1.3"
SQLAlchemy = "==1.3.17"
contexttimer = "^0.3.3"
Pint = "^0.16"
gunicorn = "^20.1.0"
nchelpers = {version = "^5.5.11", source = "pcic"}
modelmeta = {version = "^1.0.1", source = "pcic"}
cf-cell-methods = {version = "^0.1.0", source = "pcic"}
requests = "^2.31.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=3.0.0"
python-dateutil = "^2.8.2"
black = "^23.11.0"
pre-commit = "^3.5.0"
[[tool.poetry.source]]
name = "pcic"
url = "https://pypi.pacificclimate.org/simple"
priority = "supplemental"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"online: marks tests that use an online resource (deselect with '-m \"not online\"')",
"slow: marks tests that are slow (deselect with '-m \"not slow\"')",
]
norecursedirs = ".git site-packages _build *.egg ce/tests/helpers"