forked from Bouke/docx-mailmerge
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
48 lines (43 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "docx-mailmerge2"
authors = [{name = "Iulian Ciorăscu", email = "[email protected]"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Text Processing",
]
dependencies = [
"lxml>=3.1.0",
]
description = "Performs a Mail Merge on docx (Microsoft Office Word) files"
dynamic = ["version"]
keywords = ["docx", "office", "openxml", "word"]
license = { text = "MIT" }
readme = "README.rst"
requires-python = ">=3.7"
[project.urls]
Homepage = "http://github.com/iulica/docx-mailmerge"
Issues = "http://github.com/iulica/docx-mailmerge/issues"
[tool.ruff]
exclude = []
line-length = 120
target-version = "py311"
[tool.ruff.lint.extend-per-file-ignores]
# Also ignore `E402` in all `__init__.py` files.
"__init__.py" = ["E402"]
[tool.setuptools.dynamic]
version = {attr = "mailmerge.__version__"}