From 81d37afea39a1967893cc9e9da351ecc5eca8ee0 Mon Sep 17 00:00:00 2001 From: Georg Pfuetzenreuter Date: Sun, 22 Sep 2024 02:00:51 +0200 Subject: [PATCH] Extend setup.cfg Copy metadata and options from pyproject.toml to align installation on legacy Python/pip/setuptools stacks with the modern pyproject based one. Signed-off-by: Georg Pfuetzenreuter --- setup.cfg | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/setup.cfg b/setup.cfg index b00d2fb..28e6efa 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,3 +1,21 @@ [metadata] name = pyacl version = attr: pyacl.__version__ +author = Georg Pfuetzenreuter +author_email = georg+python@lysergic.dev +description = High level abstractions over pylibacl +license = EUPL-1.2 +long_description = file: README.md, LICENSE + +[options] +package_dir= + =. +packages=find: +python_requires = >=3.6 + +[options.packages.find] +exclude= + scripts* + tests* + *.toml +where=.