forked from raphaelm/python-fints
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 1.03 KB
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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=77.0"]
[project]
name = "fints"
license = "LGPL-3.0-or-later"
license-files = ["LICENSE.txt"]
description = "Pure-python FinTS 3.0 (formerly known as HBCI) implementation"
readme = "README.md"
authors = [{ name = "Raphael Michel", email = "mail@raphaelmichel.de" }]
keywords = [
"hbci",
"banking",
"fints",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9"
dependencies = [
"bleach",
"mt-940",
"requests",
"sepaxml~=2.7",
"enum-tools~=0.12.0",
"lxml~=6.0.2",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/raphaelm/python-fints"
[tool.setuptools.dynamic]
version = { attr = "fints.version" }
[tool.setuptools.packages.find]
include = ["fints*"]