-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
42 lines (36 loc) · 997 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
[tool.poetry]
name = "sparsestack"
version = "0.6.4"
description = "Python library to handle stacks of sparse COO arrays efficiently."
authors = ["Florian Huber <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
numba = "^0.60.0"
numpy = ">1.24"
scipy = "^1.14.1"
[tool.poetry.group.dev.dependencies]
decorator = "^5.1.1"
isort = "^5.13.2"
pytest = "^8.3.3"
pytest-cov = "^6.0.0"
yapf = "^0.40.2"
testfixtures = "^8.3.0"
poetry-bumpversion = "^0.3.2"
ruff = ">0.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry_bumpversion.file."sparsestack/__version__.py"]
[tool.isort]
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
no_lines_before = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
lines_after_imports = 2
known_first_party = "sparsestack"
skip = "readthedocs/conf.py"
[tool.pytest.ini_options]
testpaths = [
"tests",
"integration-tests",
]