forked from Deltares/GEOLib-Plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
89 lines (81 loc) · 1.79 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
89
[tool.poetry]
name = "d-geolib-plus"
version = "0.2.1"
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"
pydantic = "^1.10.2"
pandas = "^1.5.2"
tqdm = "^4.64.1"
scipy = "^1.9.3"
lxml = "^4.9.1"
pyshp = "^2.3.1"
more-itertools = "^9.0.0"
requests = "^2.28.1"
d-geolib = "^0.2.4"
pyproj = "^3.4.0"
matplotlib = "^3.6.2"
numpy = "^1.23.5"
shapely = "^1.8.5.post1"
netcdf4 = "^1.6.2"
folium = "^0.13.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.2.1"
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