-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (52 loc) · 1.4 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
[tool.poetry]
name = "orca"
version = "3.0.0"
description = "OPenDAP Request Compiler Application"
authors = [
"Nikola Rados",
"Cairo Sanders",
"Eric Yvorchuk <[email protected]>"
]
license = "GPL3"
readme = "README.md"
homepage = "http://www.pacificclimate.org/"
repository = "https://github.com/pacificclimate/orca"
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Atmospheric Science",
]
packages = [
{include = "orca"},
]
include = [
"tests/data/*.nc",
]
[tool.poetry.dependencies]
python = ">=3.9"
click = "^8.1.7"
xarray = "^2024.2.0"
Flask = "^3.0.2"
netCDF4 = "^1.6.5"
gunicorn = "^21.2.0"
requests = "^2.31.0"
dask = {extras = ["dataframe"], version = "^2024.3.1"}
[tool.poetry.group.dev.dependencies]
black = "22.3.0"
pytest = "^8.1.1"
pre-commit = "^3.7.0"
snakeviz = "^2.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
process = "scripts.process:process"
[tool.pytest.ini_options]
markers = [
"online: marks tests that use online resources (deselect with '-m \"not online\"')",
"slow: marks tests that are slow (deselect with '-m \"not slow\"')",
]