-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
105 lines (100 loc) · 2.27 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
98
99
100
101
102
103
104
105
# pyproject.toml file specified at the root of the directory
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "foxes"
version = "1.1.1"
authors = [
{name = "Jonas Schulte"},
]
maintainers = [
{name = "Jonas Schulte"}
]
description = "Farm Optimization and eXtended yield Evaluation Software"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["Wind farm", "Wake modelling", "Wind farm optimization"]
classifiers = [
"Topic :: Scientific/Engineering",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
]
requires-python = ">=3.8"
dependencies = [
"matplotlib",
"numpy",
"pandas",
"xarray",
"scipy",
"netcdf4",
"windrose",
"cycler",
"tqdm",
"pyyaml"
]
[project.optional-dependencies]
opt = [
"foxes-opt"
]
dask = [
"dask",
"distributed",
"dask-jobqueue",
"setuptools",
]
eng = [
"multiprocess",
"dask",
"distributed",
"dask-jobqueue",
"setuptools",
"mpi4py",
"ray",
]
eng0 = [
"multiprocess",
"dask",
"distributed",
"dask-jobqueue",
"setuptools",
"ray",
]
test = [
"flake8",
"pytest",
]
doc = [
"sphinx",
"sphinx-immaterial",
"nbsphinx",
"ipykernel",
"ipywidgets",
"m2r2",
"lxml_html_clean",
]
dev = [
"flake8",
"pytest",
"jupyter",
"objsize",
"black[jupyter]",
]
[project.urls]
Homepage = "https://github.com/FraunhoferIWES/foxes"
Documentation = "https://fraunhoferiwes.github.io/foxes.docs/index.html"
Repository = "https://github.com/FraunhoferIWES/foxes.git"
"Bug Tracker" = "https://github.com/FraunhoferIWES/foxes/issues"
Changelog = "https://github.com/FraunhoferIWES/foxes/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
exclude = ["notebooks", "examples", "tests", "docs"]