From 157a7f066cfd1fa6b2d658756dc2aa94626f4932 Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Tue, 7 Dec 2021 14:28:05 +0100 Subject: [PATCH] Extending setup.cfg --- setup.cfg | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/setup.cfg b/setup.cfg index f563967..d42e94e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,3 +1,55 @@ +[metadata] +name = pp_admintools +description = Scripts and modules for admin tasks of DPX Betriebs-Department +author = Frank Brehm +author_email = frank.brehm@pixelpark.com +url = https://git.pixelpark.com/ppadmin/admin-tools +license = LGPL3+ +platforms = posix +provides = pp_admintools +classifiers = + Development Status :: 3 - Alpha + Environment :: Console + Intended Audience :: Developers + License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+) + Natural Language :: English + Operating System :: POSIX + Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 + Topic :: Software Development :: Libraries :: Python Modules + +[options] +package_dir= + =lib + +install_requires = + requests + six + Babel + fb_logging + fb_tools + fb_pdnstools + +setup_requires = + requests + six + Babel + fb_logging + fb_tools + fb_pdnstools + +packages=find: + +[options.packages.find] +where=lib + +[compile_catalog] +domain = pp_admintools +directory = locale +statistics = 1 [pep8] -- 2.39.5