-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 1.12 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "swish-qr"
version = "0.3.6"
description = "Swish QR Code Python Library"
readme = "README.md"
authors = [{ name = "Fredrik Haglund", email = "[email protected]" }]
license = { text = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
keywords = []
dependencies = ["pillow", "numpy", "click"]
requires-python = ">=3.7"
[project.optional-dependencies]
dev = ["black", "flake8", "pytest", "invoke", "pytest-cov"]
[project.urls]
Homepage = "https://github.com/fr3h4g/swish-qr-python"
[project.scripts]
swish_qr = "swish_qr.cli:main"
[tool.coverage.run]
omit = ["src/swish_qr/qrcodegen.py"]