-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
66 lines (57 loc) · 1.39 KB
/
setup.cfg
File metadata and controls
66 lines (57 loc) · 1.39 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
[metadata]
name = sqlite_export_for_ynab
version = 2.7.1
description = SQLite Export for YNAB - Export YNAB Data to SQLite
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/mxr/sqlite-export-for-ynab
author = Max R
author_email = maxr@outlook.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, sqlite, sql, budget, plan, cli
[options]
packages = find:
install_requires =
aiohttp>=3
aiopathlib
aiosqlite
asyncio-for-ynab
fasteners
rich>=10
tenacity
python_requires = >=3.12
[options.entry_points]
console_scripts =
sqlite-export-for-ynab = sqlite_export_for_ynab._main:main
[options.extras_require]
dev =
covdefaults>=2.1.0
coverage
pytest
pytest-asyncio
[options.package_data]
* = *.sql
sqlite_export_for_ynab =
py.typed
[bdist_wheel]
universal = True
[coverage:run]
plugins = covdefaults
[tox:tox]
envlist = py,pypy3,pre-commit
[testenv]
extras = dev
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