-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 1.01 KB
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
[project]
name = "tensorforge"
description="Small GEMM/GETT generator for GPUs"
license = {file = "LICENSE"}
requires-python = ">=3.5"
authors = [
{ name = "Ravil Dorozhinskii", email = "ravil.aviva.com@gmail.com" },
{ name = "Yakup Budanaz", email = "budanaz.yakup@gmail.com" },
{ name = "David Schneller", email = "david.schneller@tum.de" },
{ name = "Elias Reutelsterz", email = "elias.reutelsterz@tum.de" }
]
maintainers = [
{ name = "David Schneller", email = "david.schneller@tum.de" }
]
classifiers= [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dynamic = ["version", "readme", "dependencies"]
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
version = {file = ["tensorforge/VERSION"]}
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.package-data]
"*" = ["*.*"]