-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (34 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
36 lines (34 loc) · 1.02 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["fluidfoam"]
[project]
name = "fluidfoam"
version = "0.2.9"
license = {text = "GPL-3.0-or-later"}
keywords = ["Openfoam", "postprocessing", "python", "CFD"]
authors = [
{ name="Cyrille Bonamy", email="cyrille.bonamy@univ-grenoble-alpes.fr" },
]
description = "Openfoam PostProcessing Python Tools"
readme = "README.rst"
requires-python = ">=3.8"
dependencies = [
"numpy>=1.11",
"matplotlib>=1.5",
"scipy>=1.7.4",
"netCDF4",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
[project.urls]
Homepage = "https://github.com/fluiddyn/fluidfoam"
Issues = "https://github.com/fluiddyn/fluidfoam/issues"
Documentation = "https://fluidfoam.readthedocs.io"