-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (41 loc) · 1.07 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
[tool.poetry]
name = "slotBooker"
version = "2.6.1"
description = ""
authors = ["Sebastian Blum <[email protected]>"]
packages = [{include = "slotbooker", from = "src"}]
[tool.poetry.plugins.dotenv]
ignore = "false"
location = ".env"
[tool.poetry.dependencies]
python = "^3.11"
selenium = "^4.3.0"
DateTime = "^4.5"
PyYAML = "^6.0"
tqdm = "^4.64.0"
termcolor = "^2.3.0"
poetry-plugin-dotenv = "^2.1.6"
coverage = "^7.5.3"
[tool.poetry.dev-dependencies]
pytest = "^8.2.2"
ruff = "^0.5.0"
[tool.poetry.scripts]
slotBooker = "slotbooker.main:main"
slotBookerDev = "slotbooker.main_dev:main"
[tool.poetry.group.dev.dependencies]
coverage = "^7.5.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
lint.select = ["E", "F", "W", "C", "N", "Q"]
lint.ignore = ["E501"] # ignore line length for example
line-length = 88
# Exclude some directories from linting
exclude = ["migrations", "node_modules", "venv"]
# Configure fix options
# fixable = true
# # Configure per-file-ignores
# per-file-ignores = [
# "tests/test_*.py: F401, F403"
# ]