-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
40 lines (36 loc) · 1.17 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sparseconverter"
description = "Converter matrix and type determination for a range of array formats, focusing on sparse arrays"
license = {file = "LICENSE"}
keywords = ["numpy", "scipy.sparse", "sparse", "array", "matrix", "cupy", "cupyx.scipy.sparse"]
requires-python = ">=3.8"
dynamic = ["version", "readme"]
dependencies = [
"numpy",
"scipy>=1.8",
"sparse>=0.12",
"typing-extensions",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 3 - Alpha",
]
authors = [
{name="Dieter Weber", email="[email protected]"},
]
[project.urls]
repository = "https://github.com/LiberTEM/sparseconverter"
[project.optional-dependencies]
cupy = ["cupy"]
test = ["pytest", "pytest-cov"]
[tool.setuptools.dynamic]
version = {attr = "sparseconverter.__version__"}
readme = {file = ["README.md"], content-type="text/markdown"}