forked from Deltares/GEOLib-Plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
88 lines (80 loc) · 1.74 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[tool.poetry]
name = "d-geolib-plus"
version = "0.3.0"
description = "GEOLib+ components"
authors = ["Maarten Pronk <[email protected]>", "Deltares"]
license = "LGPL-3.0-or-later"
homepage = "https://deltares.github.io/geolib-plus/"
documentation = "https://deltares.github.io/geolib-plus/"
repository = "https://github.com/Deltares/geolib-plus"
readme = "README.rst"
packages = [
{include = "geolib_plus"}
]
[tool.poetry.dependencies]
python = "^3.8 <4"
pydantic = "^1"
pyproj = "^3.3"
pandas = "^1.4"
tqdm = "^4"
scipy = "^1.6"
lxml = "^4.7"
numpy = "^1.19"
matplotlib = "^3.4"
pyshp = "^2.1"
more-itertools = "^8.6"
netCDF4 = "^1.5"
requests = "^2.26"
d-geolib = "^0.6.0"
shapely = "^2.0.0"
[tool.poetry.group.dev.dependencies]
teamcity-messages = "^1.32"
pytest = "^7.2.0"
coverage = "^6.5.0"
pytest-cov = "^4.0.0"
releases = "^1.6.3"
rst2pdf = "^0.99"
isort = "^5.10.1"
black = ">=22.8.0,<22.10.0"
sphinx = "^5.3.0"
mypy = "^0.991"
sphinxcontrib-bibtex = "^2.5.0"
folium = "^0.13.0"
[build-system]
requires = ["poetry>=1.2.2"]
build-backend = "poetry.masonry.api"
[tox]
isolated_build = true
envlist = "py38, py39, py310"
[tool.pytest.ini_options]
testpaths = [
"tests",
]
markers = [
"unittest",
"integrationtest",
"systemtest",
"acceptancetest",
"workinprogress",
"integration"
]
[tool.black]
line-length = 90
target-version = ['py37']
[isort]
multi_line_output=3
include_trailing_comma=true
force_grid_wrap=0
use_parentheses=true
line_length=90
profile = "black"
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.3.0"
tag-format = "$major.$minor.$patch$prerelease"
version_files = [
"pyproject.toml:^version",
"tests/test_geolib_plus.py:^version",
"geolib_plus/__init__.py:__version__",
]
annotated_tag = true