-
Notifications
You must be signed in to change notification settings - Fork 56
/
pyproject.toml
84 lines (73 loc) · 2.1 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = ["notebooks", "tests", "images", ".github", "docs", ".devcontainer", "*.md", "*.txt", ".gitattributes"]
[project]
name="mikeio"
version="2.1.3"
dependencies = [
"mikecore>=0.2.1",
"numpy>=1.22.0",
"pandas>=1.3",
"matplotlib>=3.6.0",
"scipy>=1.0",
"PyYAML",
"tqdm",
"xarray",
]
authors = [
{ name="Henrik Andersson",email="[email protected]"},
{ name = "Jesper Sandvig Mariegaard", email="[email protected]" }
]
description="A package that uses the DHI dfs libraries to create, write and read dfs and mesh files."
license="BSD-3-Clause"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"License :: OSI Approved :: BSD License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
[project.optional-dependencies]
dev = ["pytest",
"quarto-cli",
"quartodoc==0.9.1",
"shapely",
"pyproj",
"xarray",
"netcdf4",
"rasterio",
"polars",
"ruff==0.6.2",
"mypy==1.11.1",
]
test = ["pytest", "pytest-cov", "xarray","mypy==1.11.1","shapely","pyproj", "polars"]
notebooks= [
"nbformat",
"nbconvert",
"jupyter",
"xarray",
"netcdf4",
"rasterio",
"geopandas",
"scikit-learn",
"matplotlib",
"folium",
"mapclassify",
]
[project.urls]
"Homepage" = "https://github.com/DHI/mikeio"
"Bug Tracker" = "https://github.com/DHI/mikeio/issues"
[tool.ruff.lint]
# ignore long lines
ignore = ["E501", "E741"]
select = ["D100", "D101", "D102", "D103", "D202", "D212", "D413", "D415", "D417"]