-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
57 lines (48 loc) · 1.3 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
[tool.poetry]
name = "chess-pipeline"
version = "0.1.0"
description = ""
authors = ["Guido Petri <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
psycopg2 = "^2.6.2"
luigi = "3.5.1"
pandas = "^2.2.2"
chess = "^1.10.0"
python-lichess = "^0.10"
sendgrid = "6.0.5"
stockfish = "3.5.0"
sqlalchemy = "^2.0.32"
seaborn = "^0.13.0"
beautifulsoup4 = "^4.8.0"
scikit-learn = "^1.5.0"
more-itertools = "^10.4.0"
valkey = {extras = ["libvalkey"], version = "^6.0.2"}
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.1"
pyright = "^1.1.351"
pytest-cov = "^4.1.0"
pytest-xdist = "^3.5.0"
pre-commit = "^3.7.0"
ruff = "^0.4.1"
pytest-mock = "^3.14.0"
syrupy = "^4.6.1"
freezegun = "^1.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
ignore = ["./pipeline_import/postgres_templates.py", "./tests"]
useLibraryCodeForTypes = false
[tool.ruff]
line-length = 79
[tool.ruff.lint.flake8-quotes]
inline-quotes = "single"
[tool.ruff.lint]
select = ["E", "F", "W", "Q", "I"]
preview = true
[tool.coverage.run]
omit = ["/app/tests/*", "/app/chess_pipeline.py", "/app/pipeline_import/configs.py", "/app/pipeline_import/postgres_templates.py", "/app/newsletter.py"]
[tool.coverage.report]
include_namespace_packages = true