From f0290b545e2c694c66934ec36b6e77b990cceb1e Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 11 May 2023 10:14:57 +0200 Subject: [PATCH] Add missing package metadata. --- setup.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3d87374..1b41224 100644 --- a/setup.py +++ b/setup.py @@ -23,12 +23,20 @@ description="Type annotations for the lxml package", long_description=long_description, long_description_content_type="text/markdown", + + author="lxml dev team", + author_email="lxml-dev@lxml.de", + maintainer="lxml dev team", + maintainer_email="lxml-dev@lxml.de", + url="https://github.com/lxml/lxml-stubs", + package_data={"lxml-stubs": ["*.pyi", "*/*.pyi"]}, packages=["lxml-stubs"], tests_require=tests_require, extras_require={"test": tests_require}, + zip_safe=False, + classifiers=[ "License :: OSI Approved :: Apache Software License", ], - zip_safe=False )