-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (41 loc) · 1.08 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
[project]
name = "matrepr"
version = "1.0.1"
description="Format matrices and tensors to HTML, string, and LaTeX, with Jupyter integration."
readme = "README.md"
authors = [
{ name = "Adam Lugowski"},
]
dependencies = ["tabulate"]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering",
]
keywords = [
"matrix",
"tensor",
"sparse",
"html",
"latex",
"representation",
"table",
"numpy",
"scipy",
"pydata",
"graphblas",
"torch",
"pytorch",
"tensorflow",
]
[project.urls]
homepage = "https://github.com/alugowski/matrepr"
repository = "https://github.com/alugowski/matrepr"
[project.optional-dependencies]
test = ["pytest", "html5lib", "scipy"]
supported = ["scipy", "numpy", "python-graphblas", "sparse", "torch>=2.0.0", "tensorflow"]