-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
54 lines (49 loc) · 1.44 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
[project]
name = "swirl_lm"
description = "Swirl-LM is a computational fluid dynamics simulation framework for low Mach number turbulent flows with variable density implemented with TensorFlow."
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
authors = [
{name = "wqing", email="[email protected]"},
{name = "anudhyan", email="[email protected]"},
{name = "yifanchen", email="[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
]
keywords = []
# pip dependencies of the project
dependencies = [
"absl-py",
"attrs",
"einops",
"fancyflags",
"jax",
"numpy",
"scipy",
"six",
"swirl-dynamics@git+https://github.com/google-research/swirl-dynamics",
"tensorflow",
]
# This is set automatically by flit using `swirl_lm.__version__`
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/google-research/swirl_lm"
repository = "https://github.com/google-research/swirl_lm"
# Other: `documentation`, `changelog`
[project.optional-dependencies]
# Development deps (unittest, linting, formating,...)
# Installed through `pip install .[dev]`
dev = [
"pytest",
"pytest-xdist",
"pylint>=2.6.0",
"yapf",
]
[build-system]
requires = ["flit_core >=3.5,<4"]
build-backend = "flit_core.buildapi"