-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
55 lines (47 loc) · 1.29 KB
/
setup.cfg
File metadata and controls
55 lines (47 loc) · 1.29 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
[metadata]
name = reconciler_for_ynab
version = 1.0.0
description = Reconciler for YNAB - Reconcile YNAB transactions to reach a target balance
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/mxr/reconciler-for-ynab
author = Max R
author_email = mxr@users.noreply.github.com
license = MIT
license_files = LICENSE
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
keywords = ynab, budget, plan, reconcile, cli
[options]
packages = find:
install_requires =
aiohttp>=3
babel
sqlite-export-for-ynab>=2.0.0
tldm>=1.0.2
python_requires = >=3.12
[options.entry_points]
console_scripts =
reconciler-for-ynab = reconciler_for_ynab._main:main
[options.package_data]
reconciler_for_ynab =
py.typed
[bdist_wheel]
universal = True
[coverage:run]
plugins = covdefaults
[tox:tox]
envlist = py,pypy3,pre-commit
[testenv]
deps = -rrequirements-dev.txt
commands =
coverage erase
coverage run -m pytest {posargs:tests}
coverage report
[testenv:pre-commit]
skip_install = true
deps = pre-commit-uv
commands = pre-commit run --all-files --show-diff-on-failure