-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (95 loc) · 2.63 KB
/
pyproject.toml
File metadata and controls
101 lines (95 loc) · 2.63 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[tool.poetry]
name = "thunderbird"
version = "1.3.1"
description = "A Web Processing Service for Climate Explorer data preparation"
authors = [
"Nikola Rados",
"Sangwon Lim",
"Cairo Sanders",
"James Hiebert <hiebert@uvic.ca",
"Eric Yvorchuk <eyvorchuk@uvic.ca",
"Long Vu",
]
license = "GPL3"
readme = "README.md"
homepage = "http://www.pacificclimate.org/"
repository = "https://github.com/pacificclimate/thunderbird"
keywords = ["wps", "pywps", "birdhouse", "thunderbird"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
packages = [
{include = "thunderbird"},
]
include = [
"tests/data/*.nc",
"tests/metadata-conversion/*.yaml",
]
[[tool.poetry.source]]
name = "pcic"
url = "https://pypi.pacificclimate.org/simple"
priority = "supplemental"
[tool.poetry.dependencies]
python = ">=3.9,<4"
ce-dataprep = { version = "^0.8.8", source = "pcic" }
cftime = "^1.6.3"
click = "^8.1.7"
gunicorn = "^22.0.0"
jinja2 = ">=2.11.3,<3.1.0"
netcdf4 = "1.6.2"
numpy = "^1.20.0"
psutil = "^5.9.8"
pywps = "4.5.2"
xarray = "^2024.2.0"
nchelpers = { version = "^5.5.11", source = "pcic" }
werkzeug = "2.2.3"
wps-tools = { version = "^2.1.1", source = "pcic" }
cdo = "^1.6.0"
poetry-dotenv-plugin = "^0.2.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=6.0"
flake8 = "^7.0.0"
pytest-flake8 = "^1.1.1"
ipython = "<8.24.0"
pytest-notebook = "^0.10.0"
nbsphinx = "^0.9.4"
nbval = ">=0.9.6"
nbconvert = "^7.16.4"
sphinx = "^2.4.4"
bumpversion = "^0.6.0"
twine = "^5.1.0"
cruft = "^2.15.0"
nbclient = ">=0.5.10,<0.6.0"
black = "22.3.0"
jupyterlab = "^2.2.10"
ipywidgets = "^7.5.1"
nodejs = "^0.1.1"
birdhouse-birdy = "0.8.4"
beautifulsoup4 = "^4.9.3"
notebook = ">=6.1.5"
pygments = ">=2.7.4"
pyproj = "^3.6.1"
[tool.poetry.scripts]
thunderbird = "thunderbird.cli:cli"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--strict --tb=native"
python_files = ["test_*.py"]
markers = [
"online: marks tests that use online resources (deselect with '-m \"not online\"')",
"slow: marks tests that are slow (deselect with '-m \"not slow\"')",
]