-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
43 lines (35 loc) · 1.08 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
[tool.poetry]
name = "mangaki-zero"
version = "1.2.0"
description = "Mangaki's recommandation algorithms"
authors = ["Jill-Jênn Vie <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://research.mangaki.fr"
documentation = "https://github.com/mangaki/zero"
keywords = ["machine learning", "recommandation", "mangaki", "recommender systems", "algorithms"]
packages = [
{ include = "zero" }
]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
numpy = "^1.23"
pandas = "^1.3,<1.3.4"
scikit-learn = { version="^1.0" }
tensorflow = { version="*", optional = true }
fastFM = { version="*", optional = true }
pywFM = { version="*", optional = true }
surprise = { version="*", optional = true }
scipy = "^1.9"
mangaki-zero-aggregation = { version="^0.1", optional = true }
[tool.poetry.extras]
deep = ["tensorflow"]
external = ["surprise"]
fm = ["fastFM", "pywFM"]
secure-aggregation = [ "mangaki-zero-aggregation" ]
[tool.poetry.dev-dependencies]
matplotlib = "^3.1"
pytest = "^7.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"