Update setup.py

This commit is contained in:
Eric Lapouyade 2025-07-15 17:15:05 +02:00
parent 416729dddc
commit d9bb19cdd4
2 changed files with 3 additions and 3 deletions

View File

@ -1,2 +0,0 @@
[bdist_wheel]
universal = 1

View File

@ -50,6 +50,7 @@ setup(
version=get_version("docxtpl"),
description="Python docx template engine",
long_description=long_description,
long_description_content_type="text/x-rst",
classifiers=[
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
@ -64,7 +65,8 @@ setup(
keywords="jinja2",
url="https://github.com/elapouya/python-docx-template",
author="Eric Lapouyade",
license="LGPL 2.1",
license="LGPL-2.1-only",
license_files=[],
packages=["docxtpl"],
install_requires=["python-docx>=1.1.1", "docxcompose", "jinja2", "lxml"],
extras_require={"docs": ["Sphinx", "sphinxcontrib-napoleon"]},