forked from sandialabs/WecOptTool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (49 loc) · 1.03 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "wecopttool"
version = "3.0.2"
description = "WEC Design Optimization Toolbox"
readme = "README.md"
authors = [
{name = "Sandia National Laboratories"},
]
urls = {Documentation = "https://sandialabs.github.io/WecOptTool/"}
requires-python = ">=3.8"
license = {text = "GNU General Public License v3 (GPLv3)"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.20, <2.0",
"scipy",
"xarray",
"autograd",
"capytaine",
"joblib",
"wavespectra>=3.13",
"netcdf4",
]
[project.optional-dependencies]
dev = [
"pytest",
"sphinx",
"sphinxcontrib-bibtex",
"sphinx_rtd_theme",
"jupyter",
"nbsphinx",
"pandoc",
"imageio",
"pygifsicle",
"jinja2",
"nbconvert",
]
geometry = [
"matplotlib",
"meshio",
"gmsh",
"pygmsh",
]