From d9bb19cdd48bc71f0f47c5d4a4736bcf53eb53a3 Mon Sep 17 00:00:00 2001 From: Eric Lapouyade Date: Tue, 15 Jul 2025 17:15:05 +0200 Subject: [PATCH] Update setup.py --- setup.cfg | 2 -- setup.py | 4 +++- 2 files changed, 3 insertions(+), 3 deletions(-) delete mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 7c2b287..0000000 --- a/setup.cfg +++ /dev/null @@ -1,2 +0,0 @@ -[bdist_wheel] -universal = 1 \ No newline at end of file diff --git a/setup.py b/setup.py index 495749d..86da0d9 100644 --- a/setup.py +++ b/setup.py @@ -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"]},