-
Notifications
You must be signed in to change notification settings - Fork 1k
/
pyproject.toml
47 lines (42 loc) · 1.43 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
[project]
name = "scikit-surprise"
authors = [{ name = "Nicolas Hug", email = "[email protected]" }]
description = "An easy-to-use library for recommender systems."
requires-python = ">=3.8"
keywords = [ "recommender", "recommendation system" ]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: BSD License",
"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",
]
license = { "file" = "LICENSE.md" }
dependencies = [
# Lower bounds for deps are as in scikit-learn in May 2024, 1.6.dev0
"joblib>=1.2.0",
"numpy>=1.19.5",
"scipy>=1.6.0"
]
dynamic = ["version", "readme"]
[project.scripts]
surprise = "surprise.__main__:main"
[project.urls]
homepage = "https://surpriselib.com"
repository = "https://github.com/NicolasHug/Surprise"
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "Cython>=3.0.10", "oldest-supported-numpy"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = { attr = "surprise.__version__"}
readme = { content-type = "text/markdown", file = [
"README.md",
]}
[tool.setuptools.packages.find]
exclude = ["tests*", "doc*", "examples*",]