forked from EUFLOW/WIFA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (73 loc) · 2.06 KB
/
pyproject.toml
File metadata and controls
79 lines (73 loc) · 2.06 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
# pyproject.toml file specified at the root of the directory
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "wifa"
version = "1.0"
authors = [
{name = "Julian Quick"},
{name = "Rem-Sophia Mouradi"},
{name = "Jonas Schulte"},
{name = "Koen Devesse"},
{name = "Paul van der Laan"},
{name = "Antoine Mathieu"},
]
maintainers = [
{name = "Julian Quick"},
{name = "Rem-Sophia Mouradi"},
{name = "Jonas Schulte"},
{name = "Koen Devesse"},
{name = "Antoine Mathieu"},
]
description = "Unified interface to wake and flow models"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["Wind farm", "Wake modelling"]
classifiers = [
"Topic :: Scientific/Engineering",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",#
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
]
requires-python = ">=3.9,<3.12"
dependencies = [
"py_wake>=2.6.5",
"foxes>=1.6.2",
"windIO @ git+https://github.com/EUFlow/windIO.git",
"wayve @ git+https://gitlab.kuleuven.be/TFSO-software/wayve@dev_foxes",
#"numpy<2",
"xarray>=2022.0.0,<2025",
"mpmath",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pycodestyle",
]
dev = [
"objsize",
"jupyter",
"ncplot",
"nctoolkit",
"cartopy",
]
[project.urls]
Homepage = "https://github.com/EUFLOW/WIFA/"
Repository = "https://github.com/EUFLOW/WIFA.git"
"Bug Tracker" = "https://github.com/EUFLOW/WIFA/issues"
[tool.setuptools.packages.find]
exclude = ["notebooks", "examples", "tests", "docs", "recipe", "results", "output"]
[project.scripts]
wifa = "wifa.main_api:run"
wifa_foxes = "wifa.foxes_api:run"
wifa_pywake = "wifa.pywake_api:run"
wifa_wayve = "wifa.wayve_api:run"
wifa_saturne = "wifa.cs_api.cs_modules.csLaunch.cs_run_function:run"