-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
75 lines (69 loc) · 1.29 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "csr"
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
]
description = "Compressed Sparse Row matrices for Python, with Numba API."
readme = "README.md"
license = { file = "LICENSE" }
dynamic = ['version']
requires-python = ">= 3.8"
dependencies = [
"numba >=0.51",
"numpy >=1.21",
"scipy >=1.4,<2"
]
[[project.authors]]
name = "Michael Ekstrand"
email = "michaelekstrand@boisestate.edu"
[project.urls]
home-page = "https://csr.lenskit.org"
source = "https://github.com/lenskit/csr"
[project.optional-dependencies]
test = [
"pytest ==7.*",
"pytest-doctestplus >=0.9",
"pytest-benchmark >=3",
"pytest-cov >=2.12",
"hypothesis >=6.30,<7",
"psutil >=5"
]
dev = [
"flit >=3.2,<4",
"packaging",
"tomlkit",
"keyring",
"docopt>=0.6",
"invoke",
"flake8",
"rstcheck",
"sphinx-autobuild >=2021",
]
doc = [
"sphinx >=4",
"furo"
]
profile = [
"notebook",
"seaborn",
"jupytext",
"pandas >=1.0"
]
mkl = [
"cffi"
]
[tool.flit.sdist]
include = ["tests/*"]
exclude = [
".github",
"*.ipynb"
]
[tool.conda-lock]
channels = [
"conda-forge",
"lenskit",
]