-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
54 lines (50 loc) · 1.81 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sansa"
version = "1.1.0"
description = "Scalable collaborative filtering model based on sparse approximate inverse"
dependencies = [
"numba >= 0.57.0",
"numpy >= 1.22.3",
"scikit-sparse >= 0.4.8",
"scipy >= 1.7.3",
]
requires-python = ">= 3.10"
authors = [
{name = "Martin Spisak", email = "[email protected]"},
{name = "Radek Bartyzal", email = "[email protected]"},
{name = "Antonin Hoskovec", email = "[email protected]"},
{name = "Ladislav Peska", email = "[email protected]"},
{name = "Miroslav Tuma", email = "[email protected]"},
]
maintainers = [
{name = "Martin Spisak", email = "[email protected]"},
]
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["recommendation", "collaborative filtering", "sparse matrix", "sparse approximate inverse"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
]
[project.urls]
Homepage = "https://github.com/glami/sansa"
Repository = "https://github.com/glami/sansa.git"
Issues = "https://github.com/glami/sansa/issues"
[project.optional-dependencies]
mkl = ["sparse_dot_mkl"]
dev = ["black", "isort"]
demo = ["jupyter", "matplotlib", "pandas", "pyarrow", "ipyplot", "scikit-learn"]