-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
58 lines (54 loc) · 1.33 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "scons>=3"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"
[project]
name = "Cassiopee"
version = "4.0"
authors = [
{name="ONERA", email="christophe.benoit@onera.fr"},
]
license = {text="LGPLv3"}
description = "Computational Fluid Dynamics pre- and post-processing python modules"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Topic :: Scientific/Engineering :: Physics"
]
dependencies = [
"numpy>=1.23.3",
"mpi4py>=3.1.3",
"scons>=4.4.0"
]
[tool.setuptools.packages.find]
where = ["."]
include = [
"KCore",
"XCore",
"Converter",
"Geom",
"Transform",
"Generator",
"Post",
"Initiator",
"Connector",
"Distributor2",
"Dist2Walls",
"RigidMotion",
"Compressor",
"Modeler",
"Intersector",
"Apps",
"CPlot"
]
[project.urls]
Homepage = "https://github.com/onera/Cassiopee"
Documentation = "https://cassiopee.onera.fr/"
Repository = "https://github.com/onera/Cassiopee.git"
Issues = "https://github.com/onera/Cassiopee/issues"