-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
56 lines (51 loc) · 1.34 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"microhhpy",
"microhhpy.chem",
"microhhpy.data",
"microhhpy.interp",
"microhhpy.io",
"microhhpy.land",
"microhhpy.real",
"microhhpy.solvers",
"microhhpy.spatial",
"microhhpy.thermo"
]
include-package-data = true
[tool.setuptools.package-data]
"microhhpy.data" = ["*"]
[project]
name = "microhhpy"
version = "0.1.9"
description = "Python package with utility functions for working with MicroHH LES/DNS."
readme = "README.md"
authors = [
{ name = "Bart van Stratum", email = "bart@cloudysky.cc" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
]
keywords = ["large eddy simulation", "LES", "direct numerical simulation", "DNS", "computational fluid dynamics", "CFD", "meteorology", "turbulence"]
dependencies = [
"numpy",
"matplotlib",
"pyproj",
"colorlog",
"numba",
"cartopy",
"xarray",
"netCDF4",
"scipy",
"rioxarray",
"ls2d"
]
requires-python = ">=3.7"
[project.urls]
Homepage = "https://github.com/microhh/microhhpy"