-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (30 loc) · 953 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
[tool.poetry]
name = "recommender-systems"
version = "0.1.0"
description = "Implementing various Recommender Systems."
authors = ["Ilias Antonopoulos <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/ilias-ant/recommender-systems"
keywords = ["collaborative-filtering", "recommender-systems", "federated-learning", "deep-matrix-factorization", "movielens"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/ilias-ant/recommender-systems/issues"
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
graphviz = "~0.19.1"
matplotlib = "~3.5.1"
mizani = "~0.7.3"
nltk = "~3.7"
pandas = "~1.4.0"
plotnine = "~0.8.0"
pydot = "~1.4.2"
scikit-learn = "~1.0.2"
scikit-surprise = "~1.1.1"
tensorflow = "~2.8.0"
tensorflow-federated = "~0.20.0"
[tool.poetry.dev-dependencies]
black-nb = "^0.7"
notebook = "^6.4.8"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"