forked from Cloud-Drift/clouddrift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
97 lines (87 loc) · 1.95 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "clouddrift"
version = "0.40.0"
authors = [
{ name="Shane Elipot", email="[email protected]" },
{ name="Philippe Miron", email="[email protected]" },
{ name="Milan Curcic", email="[email protected]" },
{ name="Kevin Santana", email="[email protected]" }
]
description = "Accelerating the use of Lagrangian data for atmospheric, oceanic, and climate sciences"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"aiohttp>=3.8.4",
"awkward>=2.0.0",
"fsspec>=2022.3.0",
"netcdf4>=1.6.4",
"h5netcdf>=1.3.0",
"numpy>=1.22.4",
"pandas>=1.3.4",
"pyarrow>=8.0.0",
"tqdm>=4.64.0",
"requests>=2.31.0",
"scipy>=1.11.2",
"xarray>=2023.5.0",
"zarr>=2.14.2",
"tenacity>=8.2.3"
]
[project.optional-dependencies]
all = ["clouddrift[dev,docs,plotting]"]
dev = [
"build",
"coverage",
"docutils",
"pytest",
"mypy",
"ruff",
"twine",
]
docs = [
"sphinx",
"sphinx-book-theme",
"sphinx-copybutton",
]
plotting = [
"matplotlib",
"cartopy",
]
[project.urls]
Homepage = "https://github.com/Cloud-Drift/clouddrift"
Documentation = "https://cloud-drift.github.io/clouddrift"
[tool.ruff.lint]
ignore = ["E731", "E741"]
select = ["E4", "E7", "E9", "F", "I"]
[tool.mypy]
python_version = "3.10"
follow_imports = "normal"
files = [
"clouddrift/**/*.py",
"tests/**/*.py",
]
[tool.pytest.ini_options]
testpaths = [
"tests/**/*_tests.py",
]
[[tool.mypy.overrides]]
module = [
"clouddrift.kinematics",
"clouddrift.pairs",
"clouddrift.plotting",
"clouddrift.ragged",
"clouddrift.signal",
"clouddrift.sphere",
"clouddrift.wavelet",
"tests.kinematics_tests",
"tests.pairs_tests",
"tests.plotting_tests",
]
ignore_errors = true