-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
71 lines (63 loc) · 1.58 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
[tool.poetry]
name = "pydfy"
version = "0.2.0"
description = "PDF reporting made easy."
authors = ["Donny Peeters <[email protected]>", "Thijs Blom <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/BiteStreams/pydfy"
repository = "https://github.com/BiteStreams/pydfy"
include = ["pydfy/**"]
exclude = [
"**/out.pdf",
"**/assets",
"**/.venv",
"**/.idea",
"**/.pytest_cache",
"**/.ruff_cache",
"**/__pycache__",
"**/.mypy_cache",
"**/.git",
"**/.github",
"**/Dockerfile",
"**/build",
"*.iml",
"*.swp",
".DS_Store",
"Makefile",
".dockerignore",
".gitignore",
".pre-commit-config.yaml",
"README.md",
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.10"
jinja2 = "^3.1.4"
selenium = "^4.18.1"
pandas = { version = "^2.0.0", optional = true}
matplotlib = { version = "^3.0.0", optional = true }
polars = {version = "^0.20.30", optional = true}
[tool.poetry.extras]
pandas = ["pandas"]
polars = ["polars"]
matplotlib = ["matplotlib"]
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
[tool.black]
target-version = ["py310"]
line-length = 120
[tool.vulture]
min_confidence = 90
exclude = ["/tests/", "*venv*"]
paths = ["."]
[tool.ruff]
select = ["E", "F", "ERA", "W", "TID", "I", "G", "INP", "T20", "UP", "ISC", "PTH", "SIM", "PLC", "A"]
ignore = ["UP006", "UP007", "A003", "T201", "T203"]
fix = true
line-length = 120
target-version = "py310"
task-tags = ["Example", "todo", "TODO", "FIXME"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"