forked from hudora/huBarcode
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.13 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
[tool.poetry]
name = "pyStrich"
version = "0.9"
description = "PyStrich is a Python module to generate 1D and 2D barcodes (Code 39, Code 128, DataMatrix, QRCode and EAN13). Forked from huBarcode."
authors = [
"Michael Mulqueen <[email protected]>"
# Previous authors not listed here. Refer to git log.
]
maintainers = [
"Michael Mulqueen <[email protected]>"
]
readme = "README.md"
license = "Apache-2.0"
include = [
"pystrich/fonts/*.pil",
"pystrich/fonts/*.pbm",
"pystrich/qrcode/qrcode_data/*.dat"
]
homepage = "https://github.com/mmulqueen/pyStrich"
repository = "https://github.com/mmulqueen/pyStrich"
keywords = [
"barcode",
"qrcode",
"datamatrix",
"ean13",
"code39",
"code128"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Graphics",
"Topic :: Office/Business"
]
[tool.poetry.dependencies]
python = "^3.8"
pillow = ">=10.3"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"