-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 833 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 833 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 = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "webgpu"
version = "0.0.1"
description = "A WebGPU project with compute shaders and utilities to visualize NGSolve meshes and functions"
authors = [
{ name = "Matthias Hochsteger", email = "mhochsteger@cerbsim.com" }
]
# license = { text = "MIT" }
keywords = ["WebGPU", "compute shaders", "graphics", "Python", "NGSolve", "FEM", "Netgen"]
classifiers = [
"Programming Language :: Python :: 3",
# "License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
readme = "README.md"
requires-python = ">=3.8"
[tool.setuptools.packages.find]
where = ["."]
include = ["webgpu*"]
[tool.setuptools.package-data]
# Include .wgsl and .js files in the webgpu package
webgpu = ["*.wgsl", "*.js"]