-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 1.15 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
[tool.poetry]
name = "kcs"
version = "0.1.0"
description = "KNMI Climate Scenarios: resampling of global models for boundaries of local models"
license = "Apache-2.0"
authors = ["Evert Rol <[email protected]>"]
readme = "README.md"
repository = "https://github.com/eucp-project/kcs"
keywords = ["knmi", "climate"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Atmospheric Science"
]
[tool.poetry.dependencies]
python = "^3.6"
numpy = "^1.18"
pandas = "^1.0"
h5py = "^2.10"
matplotlib = "^2"
# Note: scitools-iris requires matplotlib 2, not 3.
# Matplotlib 2 is incompatible with Python 3.8
scitools-iris = "^2.4"
#cartopy = { git = "https://github.com/SciTools/cartopy.git" }
[tool.poetry.dev-dependencies]
pytest = "^5.2"
Sphinx = "^2.4.4"
pylint = "^2.4.4"
flake8 = "^3.7.9"
[tool.poetry.scripts]
resample = "kcs.resampling"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"