-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
82 lines (78 loc) · 1.73 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[tool.poetry]
name = "replay-rec"
version = "0.8.0"
description = "RecSys Library"
authors = ["AI Lab, Sber",
"Alexey Vasilev <[email protected]>",
"Yan-Martin Tamm <[email protected]>",
"Anna Volodkevich <[email protected]>",
"Boris Shminke",
"Alexander Sidorenko",
"Roza Aysina"]
readme = "README.md"
homepage = "https://sberbank-ai-lab.github.io/RePlay/"
repository = "https://github.com/sberbank-ai-lab/RePlay"
classifiers = [
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed"
]
packages = [
{ include = "replay" }
]
[tool.poetry.dependencies]
python = ">=3.7, <3.10"
pytorch-ignite = "*"
lightfm = "*"
lightautoml = ">=0.3.1"
numpy = ">=1.20.0"
optuna = "*"
pandas = "*"
psutil = "*"
pyspark = ">=3.0, < 3.2"
scipy = "*"
scikit-learn = "*"
torch = "*"
numba = ">=0.50"
llvmlite = ">=0.32.1"
seaborn = "*"
pyarrow = "*"
implicit = "<0.5"
[tool.poetry.dev-dependencies]
# dev only
# visualization
jupyter = "*"
jupyterlab = "*"
matplotlib = "*"
# testing
pytest = "5.4.3"
pytest-cov = "2.9.0"
parameterized = "0.7.4"
statsmodels = "*"
# style
flake8 = "*"
black = "*"
pre-commit = "*"
pylint = "*"
# docs
Sphinx = "*"
sphinx-rtd-theme = "*"
sphinx-autodoc-typehints = "*"
docutils = "=0.16"
myst-parser = "*"
ghp-import = "*"
# emacs dependencies
rope = "*"
virtualenv = "*"
# stubs
data-science-types = "*"
pyspark-stubs = "*"
[tool.black]
line-length = 79
[build-system]
build-backend = "poetry.masonry.api"