-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (50 loc) · 1.49 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
# SPDX-FileCopyrightText: 2024 Max Mehl <https://mehl.mx>
#
# SPDX-License-Identifier: GPL-3.0-only
[tool.poetry]
name = "tonuino-cards-manager"
version = "0.1.2"
description = "Manage Tonuino RFID and SD cards by one configuration file. Easy, lightweight and feature-rich"
readme = "README.md"
authors = ["Max Mehl <[email protected]>"]
repository = "https://github.com/mxmehl/tonuino-cards-manager"
keywords = ["tonuino", "management", "automation"]
license = "GPL-3.0-only"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: End Users/Desktop",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Utilities",
]
packages = [{ include = "tonuino_cards_manager" }]
[tool.poetry.dependencies]
python = "^3.10"
mutagen = "^1.47.0"
pyyaml = "^6.0.1"
qrcode = "^7.4.2"
wand = "^0.6.13"
num2words = "^0.5.13"
[tool.poetry.scripts]
tonuino-cards-manager = 'tonuino_cards_manager.main:main'
tonuino-cover-converter = 'tonuino_cards_manager.cover:main'
[tool.poetry.group.dev.dependencies]
types-qrcode = "^7.4.0.20240408"
pylint = "^3.2.3"
mypy = "^1.10.0"
black = "^24.4.2"
pytest = "^8.2.2"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# FORMATTING settings
[tool.isort]
profile = "black"
[tool.black]
line-length = 100
# MYPY settings
[tool.mypy]
files = ["tonuino_cards_manager/*.py"]
disable_error_code = ["import-untyped"]