exec-notify/setup.cfg

39 lines
1.1 KiB
INI
Raw Normal View History

2021-07-22 16:25:15 +02:00
; setup.cfg is the configuration file for setuptools.
; https://packaging.python.org/tutorials/packaging-projects/#configuring-metadata
2021-07-22 13:01:18 +02:00
[metadata]
2021-07-22 16:20:03 +02:00
name = de.p1st.exec_notify
2022-05-30 20:23:24 +02:00
version = 0.1.8
2021-07-22 13:01:18 +02:00
author = Daniel Langbein
author_email = daniel@systemli.org
description = mail notification if command fails
2021-07-22 13:01:18 +02:00
long_description = file: README.md
long_description_content_type = text/markdown
2021-07-28 11:41:11 +02:00
url = https://codeberg.org/privacy1st/execNotify
2021-07-22 13:01:18 +02:00
project_urls =
2021-07-28 11:41:11 +02:00
Bug Tracker = https://codeberg.org/privacy1st/execNotify/issues
2021-07-22 16:25:15 +02:00
; https://pypi.org/classifiers/
2021-07-22 13:01:18 +02:00
classifiers =
2021-07-22 16:20:03 +02:00
Development Status :: 4 - Beta
2021-07-22 13:01:18 +02:00
Programming Language :: Python :: 3
2022-03-02 12:45:15 +01:00
License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
2021-07-22 13:01:18 +02:00
Operating System :: Unix
[options]
package_dir =
= src
packages = find:
2022-05-30 20:23:24 +02:00
; capture_output was added in 3.7
; - https://docs.python.org/3/library/subprocess.html#subprocess.run
python_requires = >=3.7
2021-07-22 13:01:18 +02:00
[options.packages.find]
2021-07-22 16:25:15 +02:00
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