-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (47 loc) · 1.28 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
[build-system]
requires = ["flit_core>=3.2"]
build-backend = "flit_core.buildapi"
[project]
name = "hans"
description = "Height-Averaged Navier-Stokes (HANS) solver for 2D lubrication problems"
readme = "README.md"
authors = [
{ name = "Hannes Holey", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
]
requires-python = ">=3.8"
dynamic = ["version"]
dependencies = [
"matplotlib>=3.2.0",
"numpy>=1.19.5, <1.25.0",
"netCDF4>=1.5.3",
"PyYAML>=5.3",
"mpi4py>=3.0",
"scipy>=1.3",
"GPy",
"dtool",
"dtool-lookup-api"
]
[project.optional-dependencies]
multiscale = ['lammps']
test = ['pytest',
'coverage>=5.0.3']
[project.urls]
Source = "https://github.com/hannes-holey/hans"
[project.scripts]
animate1D="hans.cli:animate1D.main"
animate2D="hans.cli:animate2D.main"
generate_roughness="hans.cli:generate_roughness.main"
plot1D_evolution="hans.cli:plot1D_evolution.main"
plot1D_height = "hans.cli:plot1D_height.main"
plot1D_last = "hans.cli:plot1D_last.main"
plot2D_height = "hans.cli:plot2D_height.main"
plot2D_last = "hans.cli:plot2D_last.main"
plot_scalar = "hans.cli:plot_scalar.main"
read_config = "hans.cli:read_config.main"
[tool.pytest.ini_options]
addopts = "-v"
testpaths = ["tests"]