-
Notifications
You must be signed in to change notification settings - Fork 46
/
pyproject.toml
50 lines (42 loc) · 1.42 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
[tool.poetry]
name = "reportbro-lib"
version = "3.9.2"
description = "Generate PDF and Excel reports from visually designed templates"
authors = ["jobsta <[email protected]>"]
license = "AGPL-3.0"
readme = "README.rst"
homepage = "https://www.reportbro.com"
repository = "https://github.com/jobsta/reportbro-lib"
documentation = "https://www.reportbro.com/doc/installation"
keywords = ["pdf", "excel", "report", "generate", "create", "web", "template", "layout"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
packages = [
{ include = "reportbro" },
]
include = ["data/logo_watermark.png"]
[tool.poetry.dependencies]
python = "^3.8"
Babel = "^2.14.0"
python-barcode = "^0.15.1"
reportbro-fpdf2 = "^2.7.5"
# reportbro-fpdf2 = { path = "../fpdf2/", develop = true}
simpleeval = "^0.9.13"
Pillow = "^10.2.0"
qrcode = "^7.4.2"
XlsxWriter = "^3.0.3"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"