forked from MHKiT-Software/MHKiT-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
150 lines (133 loc) · 2.73 KB
/
pyproject.toml
File metadata and controls
150 lines (133 loc) · 2.73 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mhkit"
# `version` is read from `[tools.setuptools.dynamic] version` during build: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html#dynamic-metadata
dynamic = ["version"]
description = "Marine and Hydrokinetic Toolkit"
readme = "README.md"
authors = [
{name = "MHKiT developers"}
]
license = {text = "Revised BSD"}
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"numpy>=2.0.0",
"pandas>=2.2.2",
"scipy>=1.14.0",
"xarray>=2024.6.0",
"matplotlib>=3.9.1",
]
[project.optional-dependencies]
# Core dependencies for each module
wave = [
"scikit-learn>=1.5.1",
"statsmodels>=0.14.2",
"numexpr>=2.10.0",
"bottleneck",
]
tidal = [
"scikit-learn>=1.5.1",
"statsmodels>=0.14.2",
"numexpr>=2.10.0",
"bottleneck",
]
river = [
"scikit-learn>=1.5.1",
"statsmodels>=0.14.2",
"numexpr>=2.10.0",
"bottleneck",
]
dolfyn = [
"h5py>=3.11.0",
"h5pyd>=0.18.0",
"netCDF4>=1.7.1.post1",
"cartopy",
]
power = [
"scikit-learn>=1.5.1",
"statsmodels>=0.14.2",
]
loads = [
"scikit-learn>=1.5.1",
"statsmodels>=0.14.2",
]
mooring = [
"scikit-learn>=1.5.1",
"statsmodels>=0.14.2",
]
acoustics = [
"scikit-learn>=1.5.1",
"statsmodels>=0.14.2",
]
qc = [
"scikit-learn>=1.5.1",
"statsmodels>=0.14.2",
]
utils = [
"requests",
"beautifulsoup4",
"lxml",
"pytz",
"NREL-rex>=0.2.63",
"pecos>=0.3.0",
"fatpack",
]
# Development dependencies
dev = [
"pytest",
"pylint",
"pytest-cov",
"pre-commit",
"coverage",
"coveralls"
]
# Examples dependencies
examples = [
"jupyter",
"notebook",
"ipykernel",
"nbval",
"utm",
"folium",
"mhkit[wave]",
"mhkit[tidal]",
"mhkit[river]",
"mhkit[dolfyn]",
"mhkit[power]",
"mhkit[loads]",
"mhkit[mooring]",
"mhkit[acoustics]",
"mhkit[qc]",
"mhkit[utils]",
]
# Install all optional dependencies
all = [
"mhkit[wave]",
"mhkit[tidal]",
"mhkit[river]",
"mhkit[dolfyn]",
"mhkit[power]",
"mhkit[loads]",
"mhkit[mooring]",
"mhkit[acoustics]",
"mhkit[qc]",
"mhkit[utils]",
]
[project.urls]
Homepage = "https://github.com/MHKiT-Software/mhkit-python"
Documentation = "https://mhkit-software.github.io/MHKiT"
[tool.setuptools]
packages = ["mhkit"]
zip-safe = false
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "mhkit.__version__"}