-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (38 loc) · 986 Bytes
/
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
[project]
name = "matspy"
version = "1.0.0"
description="Sparse matrix spy plot and sparkline renderer that works with Jupyter."
readme = "README.md"
authors = [
{ name = "Adam Lugowski"},
]
dependencies = [
'numpy',
'matplotlib',
]
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",
"sparse",
"spy",
"plot",
"graph",
"numpy",
"scipy",
"graphblas",
]
[project.urls]
homepage = "/~https://github.com/alugowski/matspy"
repository = "/~https://github.com/alugowski/matspy"
[project.optional-dependencies]
test = ["pytest", "scipy", "matplotlib", "html5lib", "matrepr"]
testextra = ["python-graphblas", "sparse"]