File: pyproject.toml

package info (click to toggle)
python-csb43 0.10.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,048 kB
  • sloc: python: 11,036; sh: 101; makefile: 17
file content (72 lines) | stat: -rw-r--r-- 2,419 bytes parent folder | download
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
72
# SPDX-FileCopyrightText: 2024 wmj <wmj.py@gmx.com>
#
# SPDX-License-Identifier: LGPL-3.0-or-later

[build-system]
requires = ["setuptools>=61", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"

[project]
name = "csb43"
authors = [
    {name = "wmj", email="wmj.py@gmx.com"},
]
description = "Parsing and validation utilites for the Spanish standard norm 43 by the 'Consejo Superior Bancario' (CSB) / 'Asociación Española de Banca' (AEB) for storing bank account transactions | [es] Herramientas para leer y validar datos almacenados siguiendo la norma 43 del Consejo Superior Bancario (CSB) / Asociación Española de Banca (CSB)."
requires-python = ">=3.8"
license = {text = "LGPL-3.0-or-later"}
classifiers=[
    "Programming Language :: Python",
    "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",
    "Development Status :: 4 - Beta",
    "Environment :: Console",
    "Topic :: Utilities",
    "Topic :: Office/Business :: Financial",
    "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
]
dependencies = [
    "importlib_resources; python_version < '3.9'",
    "pycountry ~=24.6.1",
	"deprecated ~=1.2.14",
]
keywords = [
    "csb", "csb43", "aeb", "aeb43", "homebank", "ofx", "Spanish bank", "ods", "tsv", "xls", "xlsx", "excel", "yaml", "json", "html"
]
dynamic = ["version", "readme"]

[project.urls]
BugReports = "https://bitbucket.org/wmj/csb43/issues"
Source = "https://bitbucket.org/wmj/csb43"
Documentation = "https://csb43.readthedocs.io"

[project.scripts]
csb2format = "csb43.utils.cmd:main"

[project.optional-dependencies]
yaml = ["PyYAML"]
basic_formats = ["tablib ~=3.6.1"]
formats = ["tablib[all]", "csb43[basic_formats]"]
all = ["csb43[yaml,formats]"]
test = ["lxml", "pytest", "tablib[xlsx,xls,ods]", "csb43[yaml,basic_formats]"]
docs = ["sphinx"]
dev = ["build", "sphinx", "reuse", "csb43[test,docs]"]

[tool.setuptools]
include-package-data = true

[tool.setuptools.dynamic]
readme = {file = ["README.md", "INSTALL.md", "CHANGELOG.md"], content-type="text/markdown" }

[tool.setuptools.packages.find]
where = ["src"]
exclude = ["csb43.tests"]

[tool.setuptools_scm]
version_file = "src/csb43/_version.py"

[tool.black]
line-length = 100
target-version = ["py38"]