forked from ec-jrc/Thalassa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (68 loc) · 1.84 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "thalassa"
version = "0.2.0"
description = "Visualization of large scale results of hydrodynamic simulations"
authors = [
"Panos Mavrogiorgos <[email protected]>",
"George Breyiannis <[email protected]>",
]
readme = "README.md"
homepage = "https://github.com/ec-jrc/Thalassa"
keywords = [
"Hydrodynamic",
"Sea",
"Simulation",
"Visualization",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
'License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)',
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
#'Operating System :: OS Independent',
"Programming Language :: Python :: 3",
'Topic :: Scientific/Engineering :: Atmospheric Science',
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Hydrology",
"Topic :: Scientific/Engineering :: Visualization",
]
[tool.poetry.dependencies]
python = ">=3.8, <3.10"
pyproj = "^3.0"
holoviews = "^1.14"
numpy = "^1.20"
pandas = "^1.1"
bokeh = "^2.2"
panel = "^0.12"
xarray = "^0.19"
netCDF4 = "^1.5"
llvmlite = ">=0.37"
datashader = "^0.13"
"ruamel.yaml" = "^0.17.0"
geoviews = "^1.9.2"
Cartopy = "<0.20" # due to https://github.com/holoviz/geoviews/issues/529
Shapely = "<1.8"
[tool.poetry.dev-dependencies]
black = "^21.11b0"
jupyterlab = "^3.1"
nodeenv = "^1.6.0"
pyviz-comms = "^2.1"
mypy = "0.910"
prospector = "^1.5"
pre-commit = "^2.15.0"
pyinstrument = "^4.0.4"
[tool.black]
line-length = 109
target-version = ['py38']
[tool.mypy]
show_error_codes = true
ignore_missing_imports = true
implicit_reexport = true
strict = true