-
Notifications
You must be signed in to change notification settings - Fork 31
/
pyproject.toml
60 lines (56 loc) · 1.75 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
[project]
authors = [{ name = "grindsa", email = "grindelsack@gmail.com" }]
name = "dkb_robo"
description = "Download transactions from the website of Deutsche Kreditbak AG"
keywords = ["Deutsche Kreditbank", "DKB"]
version = "0.28.2"
readme = "README.md"
classifiers = [
# Keep in sync with the Python version matrix in test_lint.yaml GitHub workflow.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 4 - Beta",
"Natural Language :: German",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">= 3.8"
dependencies = [
"bs4",
"mechanicalsoup",
"requests",
"pillow",
"tabulate",
"click",
]
optional-dependencies.test = ["pytest", "pytest-cov", "html5lib"]
optional-dependencies.dev = ["build", "dkb_robo[test]"]
scripts = { dkb = "dkb_robo.cli:main" }
[project.urls]
Repository = "https://github.com/grindsa/dkb-robo"
Issues = "https://github.com/grindsa/dkb-robo/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch]
build.targets.sdist.only-packages = true
[tool.pytest.ini_options]
addopts = [
"-ra",
"--cov=dkb_robo",
"--import-mode=importlib",
"--strict-config",
"--strict-markers",
]
filterwarnings = ["error"]
log_cli_level = "INFO"
minversion = "7"
xfail_strict = true
testpaths = ["test"]