-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (26 loc) · 874 Bytes
/
pyproject.toml
File metadata and controls
28 lines (26 loc) · 874 Bytes
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
[build-system]
requires = ["hatchling==1.26.3", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "jax-fem"
version = "0.0.11"
requires-python = ">=3.9"
authors = [
{name = "Tianju Xue", email = "[email protected]"},
{name = "Weipeng Xu", email = "[email protected]"}
]
description = "A GPU accelerated Finite element analysis package in JAX."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["JAX", "GPU", "Python", "Finite element analysis", "Differentiable programming"]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3"
]
[tool.setuptools]
packages = ["jax_fem"]