-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (44 loc) · 1.15 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
[tool.poetry]
name = "steam-game-recommendations"
version = "0.1.0"
description = "Building an open hybrid recommender system for Steam"
authors = ["Anton Kozyriev"]
readme = "README.md"
packages = [
{include = "engine", from = "src"},
{include = "insights", from = "src"},
{include = "processing", from = "src"},
{include = "webcrawlers", from = "src"}
]
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
ruff = "^0.0.285"
black = "^23.11.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.webcrawl.dependencies]
scrapy = "^2.10.0"
[tool.poetry.group.webcrawl]
optional = true
[tool.poetry.group.pipeline.dependencies]
pyspark = "3.1.1"
psycopg = {extras = ["binary"], version = "^3.1.10"}
[tool.poetry.group.pipeline]
optional = true
[tool.black]
line-length = 88
target_version = ['py310']
preview = true
[tool.ruff]
select = ["A", "B", "C4", "E", "EM", "F", "I001", "Q", "UP"]
ignore = ["E501"]
[tool.pytest.ini_options]
minversion = 7.4
addopts = "-ra -q"
pythonpath = "src"
testpaths = ["tests"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"