From 632566b27c9566016b75e5be6d7b8cd97acb2e88 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Thu, 22 Jul 2021 16:25:15 +0200 Subject: [PATCH] minor --- setup.cfg | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/setup.cfg b/setup.cfg index 0d9b232..6f2762b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,5 @@ -# setup.cfg is the configuration file for setuptools. -# https://packaging.python.org/tutorials/packaging-projects/#configuring-metadata -# https://pypi.org/classifiers/ +; setup.cfg is the configuration file for setuptools. +; https://packaging.python.org/tutorials/packaging-projects/#configuring-metadata [metadata] name = de.p1st.exec_notify @@ -13,17 +12,14 @@ long_description_content_type = text/markdown url = https://codeberg.org/langfingaz/execNotify project_urls = Bug Tracker = https://codeberg.org/langfingaz/execNotify/issues + +; https://pypi.org/classifiers/ classifiers = Development Status :: 4 - Beta Programming Language :: Python :: 3 License :: OSI Approved :: MIT License Operating System :: Unix -[options.entry_points] -console_scripts= - de-p1st-execNotify = de.p1st.exec_notify.execNotify:main - de-p1st-notify = de.p1st.exec_notify.notify:main - [options] package_dir = = src @@ -31,4 +27,10 @@ packages = find: python_requires = >=3.8 [options.packages.find] -where = src \ No newline at end of file +where = src + +[options.entry_points] +; https://setuptools.readthedocs.io/en/latest/userguide/entry_point.html +console_scripts= + de-p1st-execNotify = de.p1st.exec_notify.execNotify:main + de-p1st-notify = de.p1st.exec_notify.notify:main