Newer
Older
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ntrfc"
version = "0.1.10"
description = "Numerical Test Rig for Cascades. A workflows-library for CFD analysis of cascade-flows"
authors = [
{name = "Malte Nyhuis", email = "nyhuis@tfd.uni-hannover.de"}
]
readme = "README.rst"
requires-python = ">=3.10"
license = { text = "MIT License" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.10"
]
keywords = ["ntrfc"]
dependencies = [
# Add your requirements here from `requirements.txt`
# For example:
# "somepackage>=1.0",
"pip>=23",
"numpy==1.26.4",
"matplotlib==3.9.0",
"pytest==8.2.0",
"trame==3.6.0",
"pyvista[all]==0.43.8",
"PyYAML==6.0.1",
"scipy==1.13.0",
"pandas==2.2.2",
"setuptools>=61.2.0",
"fluidfoam==0.2.6",
"tqdm==4.66.4",
"statsmodels>=0.13.5",
"imageio==2.30.0",
"scikit-learn",
"jupyter",
"sphinx",
"gmsh==4.13.0",
"shapely==2.0.1",
"scikit-image==0.22.0",
"opencv-python==4.9.0.80",
]
[project.optional-dependencies]
test = ["pytest>=3"]
[project.scripts]
ntrfc = "ntrfc.cli:main"
[tool.setuptools.package-data]
ntrfc = ["data/*"]
[tool.setuptools.packages.find]
include = ["ntrfc", "ntrfc.*"]