This commit is contained in:
Daniel Langbein 2021-07-22 16:25:15 +02:00
parent 6db2e1a70c
commit 632566b27c

View File

@ -1,6 +1,5 @@
# setup.cfg is the configuration file for setuptools. ; setup.cfg is the configuration file for setuptools.
# https://packaging.python.org/tutorials/packaging-projects/#configuring-metadata ; https://packaging.python.org/tutorials/packaging-projects/#configuring-metadata
# https://pypi.org/classifiers/
[metadata] [metadata]
name = de.p1st.exec_notify name = de.p1st.exec_notify
@ -13,17 +12,14 @@ long_description_content_type = text/markdown
url = https://codeberg.org/langfingaz/execNotify url = https://codeberg.org/langfingaz/execNotify
project_urls = project_urls =
Bug Tracker = https://codeberg.org/langfingaz/execNotify/issues Bug Tracker = https://codeberg.org/langfingaz/execNotify/issues
; https://pypi.org/classifiers/
classifiers = classifiers =
Development Status :: 4 - Beta Development Status :: 4 - Beta
Programming Language :: Python :: 3 Programming Language :: Python :: 3
License :: OSI Approved :: MIT License License :: OSI Approved :: MIT License
Operating System :: Unix 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] [options]
package_dir = package_dir =
= src = src
@ -32,3 +28,9 @@ python_requires = >=3.8
[options.packages.find] [options.packages.find]
where = src 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