-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
44 lines (38 loc) · 1.14 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
[tool.poetry]
name = "qrplatba"
version = "1.1.1"
description = "QR platba SVG QR code and SPAYD string generator."
authors = ["Viktor Stískala <[email protected]>"]
repository = "https://github.com/ViktorStiskala/python-qrplatba"
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
qrcode = "^7.4"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.2"
pytest-github-actions-annotate-failures = "^0.1.8"
ruff = "^0.0.261"
black = "^23.3.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.2.2"
[tool.ruff]
line-length = 120
[tool.black]
line-length = 120
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"