-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (71 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
77 lines (71 loc) · 1.66 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
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm[toml]>=6.2",
"numpy>=1.23.3",
"scons>=4.4.0"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"
[project]
name = "cassiopee"
version = "4.1"
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",
"Roms",
"CPlot",
"OCC"
]
[tool.setuptools.data-files]
"bin" = [
"Converter/kpython",
"CPlot/apps/cassiopee",
"CPlot/apps/kcgnsview"
]
#[tool.setuptools.scripts]
#kpython = "Converter/kpython"
#cassiopee = "CPlot/apps/cassiopee"
#kcgnsview = "CPlot/apps/kcgnsview"
[project.urls]
Homepage = "https://github.com/onera/Cassiopee"
Documentation = "https://onera.github.io/Cassiopee/"
Repository = "https://github.com/onera/Cassiopee.git"
Issues = "https://github.com/onera/Cassiopee/issues"