-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
40 lines (35 loc) · 1006 Bytes
/
setup.cfg
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
[metadata]
name = sqlite_export_for_ynab
version = 1.0.0
description = SQLite Export for YNAB - Export YNAB Budget 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 = [email protected]
license = MIT
license_files = LICENSE
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
keywords = ynab, sqlite, sql, budget, cli
[options]
packages = find:
install_requires =
aiohttp>=3
tqdm>=4
python_requires = >=3.12
[options.entry_points]
console_scripts =
sqlite-export-for-ynab = sqlite_export_for_ynab._main:main
[options.package_data]
* = *.sql
sqlite_export_for_ynab =
py.typed
[bdist_wheel]
universal = True
[coverage:run]
plugins = covdefaults