-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
128 lines (116 loc) · 2.91 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
[project]
name = "eo-tides"
version = "0.3.1"
description = "Tide modelling tools for large-scale satellite earth observation analysis"
authors = [
{ name = "Robbi Bishop-Taylor" },
{ name = "Stephen Sagar" },
{ name = "Claire Phillips" },
{ name = "Vanessa Newey" },
{ email = "[email protected]"}
]
readme = "README.md"
keywords = [
"earth observation",
"tide modelling",
"tide modeling",
"satellite data",
"coastal analysis",
"oceanography",
"remote sensing",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Oceanography",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Image Processing",
"License :: OSI Approved :: Apache Software License",
"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",
]
requires-python = ">=3.9,<4.0"
dependencies = [
"colorama>=0.4.3",
"geopandas>=0.10.0",
"matplotlib>=3.8.0",
"numpy>=1.26.0",
"odc-geo>=0.4.7",
"pandas>=2.2.0",
"psutil>=5.8.0",
"pyproj>=3.6.1",
"pyTMD==2.1.8",
"scikit-learn>=1.4.0",
"scipy>=1.11.2",
"shapely>=2.0.6",
"tqdm>=4.55.0",
"xarray>=2022.3.0",
]
[project.urls]
Homepage = "https://GeoscienceAustralia.github.io/eo-tides/"
Repository = "https://github.com/GeoscienceAustralia/eo-tides"
Documentation = "https://GeoscienceAustralia.github.io/eo-tides/"
[project.optional-dependencies]
notebooks = [
"odc-stac>=0.3.10",
"odc-geo[warp,tiff]>=0.4.7",
"pystac-client>=0.8.3",
"folium>=0.16.0",
"planetary_computer>=1.0.0",
]
[dependency-groups]
dev = [
"pytest>=6.0.0",
"pre-commit>=0.2.0",
"deptry>=0.20.0",
"mypy>=0.900",
"pytest-cov>=0.6",
"ruff>=0.0.200",
"mkdocs>=1.2",
"mkdocs-material>=9.5.0",
"mkdocs-jupyter>=0.24.0",
"mkdocstrings[python]>=0.20.0",
"black>=22.1.0",
"nbval>=0.10.0",
"odc-stac>=0.3.8",
"pystac-client>=0.8.3",
"planetary_computer>=1.0.0",
]
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.mypy]
files = ["eo_tides"]
python_version = "3.10"
ignore_missing_imports = true
allow_redefinition = true
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py310"
line-length = 120
fix = true
[tool.ruff.format]
preview = true
[tool.ruff.lint.per-file-ignores]
"tests/*" = [
"S101" # Assert
]
[tool.deptry.per_rule_ignores]
DEP002 = [
"folium",
]
[tool.coverage.report]
skip_empty = true
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
]
[tool.coverage.run]
branch = true
source = ["eo_tides"]