forked from pylbm/pylbm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
73 lines (68 loc) · 1.83 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pylbm"
dynamic = ["version"]
description = "A flexible Python package for lattice Boltzmann method"
readme = "README.rst"
license = "BSD-3-Clause"
requires-python = ">=3.6"
authors = [
{ name = "Benjamin Graille", email = "[email protected]" },
{ name = "Loic Gouarin", email = "[email protected]" },
]
keywords = [
"Boltzmann",
"Lattice",
"Methods",
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
]
dependencies = [
"cerberus",
"colorama",
"colorlog",
"cython",
"h5py",
"jinja2",
"matplotlib",
"mpi4py",
"numpy",
"numpy-stl",
"sympy>=1.3",
]
[project.optional-dependencies]
gpu = [
"loo.py==2017.2",
"pyopencl",
]
[project.urls]
Source = "https://github.com/pylbm/pylbm"
Documentation = "https://pylbm.readthedocs.io"
[tool.hatch.version]
path = "pylbm/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/pylbm",
]