-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
50 lines (45 loc) · 914 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[tool.poetry]
name = "recommender-engine-toolbook"
version = "0.1.0"
description = "Collaborative Filtering - Recommender Application"
authors = ["Trace Smith <tsmith5151@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.7.1"
Flask = "0.12"
pandas = "1.3.0"
PyYAML = "5.4.1"
scikit-learn = "0.24.2"
tensorflow = "^2.5.0"
tensorflow-recommenders = "^0.5.2"
colorama = "^0.4.4"
matplotlib = "^3.4.2"
coremltools = "4.0"
annoy = "^1.17.0"
[tool.poetry.dev-dependencies]
jupyterlab = "3.0.16"
ipykernel = "6.0.1"
ipython = "7.25.0"
flake8 = "3.9.2"
black = "21.6b0"
pytest = "^6.2.4"
matplotlib = "^3.4.2"
[tool.black]
line-length=88
target-version=['py37']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.ipynb_checkpoints
| \.venv
| _build
| build
| dist
| tests/.*/setup.py
)/
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"