-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
109 lines (100 loc) · 2.67 KB
/
Copy pathpyproject.toml
File metadata and controls
109 lines (100 loc) · 2.67 KB
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
[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "resourcecode"
dynamic = ["version"]
description = "The ResourceCODE Marine Data Toolbox is a python package to facilitate the access to recent hindcast database of sea-state, along with a set of state-of-the-art methods for data analysis."
readme = "README.md"
license = {text = "GPL-3.0-or-later"}
requires-python = ">=3.11, <3.14"
authors = [
{name = "Nicolas Raillard", email = "nicolas.raillard@ifremer.fr"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
]
keywords = [
"statistics",
"extreme",
"extreme value analysis",
"eva",
"coastal",
"ocean",
"marine",
"environmental",
"engineering",
"renewable",
"MRE",
"offshore",
"data",
"hindcast",
]
# Minimal version of dependencies are chosen to be compatible with marimo-wasm 0.23 compatible (cf
# https://wasm.marimo.app/pyodide-lock.json?v=0.23.7)
dependencies = [
"pandas>=2.2,<3",
"requests>=2.31.0,<3",
"numpy>=2.0,<3",
"scipy>=1.14.1,<2",
"pyextremes>=2.5.0,<3",
"pyarrow>=18.1.0,<19",
"plotly>=6,<7",
"xarray>=2024.11.0",
"netCDF4>=1.7.0,<2",
]
[project.urls]
Homepage = "https://resourcecode-project.github.io/py-resourcecode/"
GitHub = "https://github.com/Resourcecode-project/py-resourcecode"
"Web Portal" = "https://resourcecode.ifremer.fr"
PyPI = "https://pypi.org/project/resourcecode"
[project.optional-dependencies]
dev = [
"flake8>=3.6",
"black>=19.10b0",
"mypy",
"nbqa",
"check-manifest",
"tox",
"tox-uv",
]
doc = [
"sphinx>=4.5",
"sphinx-book-theme",
"sphinx_gallery",
"plotly",
]
[tool.setuptools.dynamic]
version = {attr = "resourcecode.__version__.__version__"}
[tool.setuptools.packages.find]
include = ["resourcecode*"]
[dependency-groups]
dev = [
"flake8>=3.6",
"black>=19.10b0",
"mypy",
"nbqa",
"check-manifest",
"tox",
"tox-uv",
"pytest>=9.0.3",
]
[tool.black]
line-length = 120
target-version = ["py311", "py312", "py313"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true