-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
86 lines (80 loc) · 3.31 KB
/
setup.py
File metadata and controls
86 lines (80 loc) · 3.31 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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Copyright (C) 2023-2026 Bank Statement Parser. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
#
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------
# LEGACY METADATA MIRROR — `pyproject.toml` is the source of truth.
#
# This file (and `setup.cfg`) exist only so that very old `pip` versions
# that do not understand PEP 621 metadata can still install the package
# from a tarball. Modern pip (>= 21.3, released 2021-10-11) reads
# `pyproject.toml` directly and ignores both files.
#
# When changing dependencies, the Python floor, classifiers, or version,
# update `pyproject.toml` first and then mirror the change here. The
# Makefile, CI, and `poetry build` / `poetry publish` flows all read
# `pyproject.toml` exclusively.
# ----------------------------------------------------------------------
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup_requirements = []
test_requirements = ["pytest>=7.4.2"]
setup(
name="bankstatementparser",
version="0.0.4",
description="""
BankStatementParser is your essential tool for easy bank statement management.
Designed with finance and treasury experts in mind, it offers a simple way to
handle CAMT (ISO 20022) formats and more. Get quick, accurate insights from
your financial data and spend less time on processing. It's the smart, hassle-
free way to stay on top of your transactions.
""",
long_description=long_description,
long_description_content_type="text/markdown",
author="Sebastien Rousseau",
author_email="sebastian.rousseau@gmail.com",
url="https://bankstatementparser.com",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
"lxml>=4.9.3",
"openpyxl>=3.1.2",
"pandas>=2.1.1",
],
keywords="""
banking, finance, parsing, CAMT, ISO20022, treasury, SEPA, analysis,
transactions, reporting
""",
license="Apache Software License",
packages=find_packages(exclude=["docs", "tests*"]),
python_requires=">=3.10",
test_suite="tests",
)