forked from kedder/ofxstatement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 1.1 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ofxstatement"
version = "0.9.2.dev0"
authors = [
{ name="Andrey Lebedev", email="[email protected]" },
]
description = "Tool to convert proprietary bank statement to OFX format, suitable for importing to GnuCash"
readme = "README.rst"
requires-python = ">=3.9"
license = { file="LICENSE.txt" }
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Natural Language :: English",
"Topic :: Office/Business :: Financial :: Accounting",
"Topic :: Utilities",
"Environment :: Console",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
keywords = ["ofx", "banking", "statement"]
dependencies = [
"appdirs>=1.3.0",
"importlib_metadata>=3.8;python_version<'3.10'",
"zipp;python_version<'3.10'"
]
[project.urls]
Homepage = "https://github.com/kedder/ofxstatement"
[project.scripts]
ofxstatement = "ofxstatement.tool:run"
[tool.setuptools.package-data]
ofxstatement = ["tests/samples"]