-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.31 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
[tool.poetry]
name = "dp"
version = "0.8.8"
description = "PCIC Climate Explorer Data Preparation"
authors = [
"Rod Glover <[email protected]>",
"James Hiebert <[email protected]>",
"Nik Rados",
"Lee Zeman <[email protected]>",
"Cairo Sanders",
"Basil Veerman",
"Eric Yvorchuk <[email protected]",
"Sangwon Lim"
]
license = "GPL3"
readme = "README.md"
include = [
"dp/data/*",
"tests/data/*.nc"
]
[tool.poetry.dependencies]
python = ">=3.8"
python-dateutil = "~2.8"
cdo = "~1.6"
Pint = "^0.21" # upgrade after python > 3.9
PyYAML = "~6.0"
nchelpers = {version = "^5.5.11", source = "pcic"}
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-mock = "*"
black = "*"
pytest-xdist = "^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.poetry.scripts]
generate_climos = "dp.scripts.generate_climos:runme"
generate_prsn = "dp.scripts.generate_prsn:runme"
split_merged_climos = "dp.scripts.split_merged_climos:runme"
update_metadata = "dp.scripts.update_metadata:runme"
decompose_flow_vectors = "dp.scripts.decompose_flow_vectors:runme"
[tool.pytest.ini_options]
markers = [
"slow: marks tests that are slow (deselect with '-m \"not slow\"')",
]