forked from hudora/huBarcode
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
252 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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" |