-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
34 lines (31 loc) · 1.14 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PspaMM"
description="Inline assembly generator for sparse matrix multiplications"
license = {file = "LICENSE"}
requires-python = ">=3.7"
authors = [
{ name = "Peter Wauligmann", email = "[email protected]" },
{ name = "Nathan Brei", email = "[email protected]" },
{ name = "Alex Puscas", email = "[email protected]" },
{ name = "David Schneller", email = "[email protected]" },
{ name = "Lukas Krenz", email = "[email protected]" },
{ name = "Carsten Uphoff", email = "[email protected]" },
]
maintainers = [
{ name = "David Schneller", email = "[email protected]" },
]
classifiers= [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD 3-Clause",
"Operating System :: OS Independent",
]
dynamic = ["version", "readme", "dependencies"]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
version = {file = ["pspamm/VERSION"]}
dependencies = {file = ["requirements.txt"]}
[project.scripts]
pspamm-generator = "pspamm.pspamm:main"