-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
105 lines (94 loc) · 2.42 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=64",
"setuptools_scm[toml]>=6.2",
"wheel",
]
[project]
name = "financeager"
description = "command line tool for organizing finances"
readme = "README.md"
keywords = [
"commandline",
"finances",
]
license = {text = "GPLv3"}
authors = [{ name = "Philipp Metzner", email = "[email protected]" }]
dependencies = [
"platformdirs==4.3.6",
"argcomplete==3.5.1",
"marshmallow==3.23.1",
"python-dateutil==2.9.0.post0",
"rich==13.9.4",
"tinydb==4.8.2",
]
dynamic = [
"version",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: Unix",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business :: Financial",
"Topic :: Database",
"Topic :: Utilities",
]
[project.optional-dependencies]
develop = [
"black==24.10.0",
"coverage==7.6.4",
'flake8==7.1.1',
"flake8-pyproject==1.2.3",
"gitlint-core==0.19.1",
'isort==5.13.2',
'pre-commit==4.0.1',
]
packaging = [
"build",
]
[project.urls]
"Bug Tracker" = "https://github.com/pylipp/financeager/issues"
Documentation = "https://github.com/pylipp/financeager"
Homepage = "https://github.com/pylipp/financeager"
"Source Code" = "https://github.com/pylipp/financeager"
[project.scripts]
fina = "financeager.cli:main"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
exclude = ["test"]
namespaces = false
[tool.coverage.run]
branch = true
source = ["financeager"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
"except Exception:",
"def .*main()",
]
[tool.setuptools_scm]
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
ensure_newline_before_comments = true
known_third_party = ["argcomplete","dateutil","marshmallow","pkg_resources","platformdirs","setuptools","tinydb"]
[tool.flake8]
max-line-length = 88
extend-ignore = [
"E731", # do not assign a lambda expression, use a def
"W503", # line break before binary operator
"W504", # line break after binary operator
]