forked from kedder/ofxstatement-transferwise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (44 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
53 lines (44 loc) · 1.12 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ofxstatement-wise"
version = "0.0.0"
description = "Wise plugin for ofxstatement"
readme = "README.md"
license = {text = "GPL-3.0-or-later"}
keywords = ["ofx", "banking", "statement", "wise"]
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",
]
dependencies = [
"ofxstatement @ git+https://github.com/wigny/ofxstatement",
]
requires-python = ">=3.9"
[project.urls]
Homepage = "https://github.com/wigny/ofxstatement-wise"
[project.entry-points.ofxstatement]
wise = "ofxstatement_wise.wise:WisePlugin"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"
[tool.mypy]
[tool.pycodestyle]
max-line-length = 88
[tool.black]
line-length = 88
target-version = ['py39']
[dependency-groups]
dev = [
"mypy",
"pytest",
"black",
"syrupy",
]