-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (55 loc) · 1.34 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "monitorbookprices"
version = "0.0.1"
description = "Monitor book prices for some italian, english, and german online bookshops."
authors = [
{name = "Andrea Petrocchi", email = "[email protected]"},
]
readme = "README.md"
license = {file="LICENSE"}
requires-python = ">=3.7,<3.13"
dependencies = [
"beautifulsoup4",
"bokeh",
"fastexcel",
"hvplot",
"ipykernel",
"lxml",
"openpyxl",
"polars",
"pytest",
"pyarrow",
"ruff",
"selenium",
"SQLAlchemy",
"xlsx2csv",
"xlsxwriter",
]
[project.urls]
Source = "https://github.com/andrea-petrocchi/monitorbookprices"
Issues = "https://github.com/andrea-petrocchi/monitorbookprices/issues"
[project.optional-dependencies]
pre-commit = [
"pre-commit",
"ruff",
]
[tool.ruff]
target-version = "py37"
line-length = 79
indent-width = 4
respect-gitignore = true
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "W", "C90", "I", "D", "S"]
ignore = ["D105", "D106", "D107"]
[tool.ruff.lint.per-file-ignores]
"**/__init__.py" = ["D104"] # Missing docstring in public package
"tests/*" = ["S101"] # Use of `assert` detected
[tool.ruff.lint.pycodestyle]
max-doc-length = 79
[tool.ruff.lint.pydocstyle]
convention = "pep257"
[tool.ruff.format]
quote-style = "single"