File: pyproject.toml

package info (click to toggle)
python-mt940 0.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 160 kB
  • sloc: python: 445; sh: 11; makefile: 6
file content (39 lines) | stat: -rw-r--r-- 1,045 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
[build-system]
requires = ['hatchling >= 1', 'hatch-tryton']
build-backend = 'hatchling.build'

[project]
name = 'mt940'
dynamic = ['version', 'authors']
requires-python = '>=3.9'
maintainers = [
    {name = "Tryton", email = "foundation@tryton.org"},
    ]
description = "A module to parse MT940 files"
readme = 'README.rst'
license = 'BSD-3-Clause'
license-files = ['COPYRIGHT']
keywords = ["MT940", "parser"]
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Intended Audience :: Developers",
    "Topic :: Office/Business",
    "Topic :: Software Development :: Libraries",
    "Topic :: Utilities",
    ]

[project.urls]
homepage = "https://www.tryton.org/"
changelog = "https://code.tryton.org/mt940/-/blob/branch/default/CHANGELOG"
forum = "https://discuss.tryton.org/tags/mt940"
issues = "https://bugs.tryton.org/mt940"
repository = "https://code.tryton.org/mt940"

[tool.hatch.version]
path = 'mt940/__init__.py'

[tool.hatch.build]
packages = ['mt940']

[tool.hatch.metadata.hooks.tryton]
copyright = 'COPYRIGHT'