exec-notify/setup.cfg

37 lines
1.0 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]
2023-06-14 21:11:22 +02:00
name = exec_notify
2022-10-18 11:50:53 +02:00
version = 0.1.10
2021-07-22 13:01:18 +02:00
author = Daniel Langbein
author_email = daniel@systemli.org
2023-06-14 21:40:52 +02:00
description = execute command and notify about failure via email
2021-07-22 13:01:18 +02:00
long_description = file: README.md
long_description_content_type = text/markdown
2023-06-14 21:11:22 +02:00
url = https://codeberg.org/privacy1st/exec-notify
2021-07-22 13:01:18 +02:00
project_urls =
2023-06-14 21:11:22 +02:00
Bug Tracker = https://codeberg.org/privacy1st/exec-notify/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
2023-06-14 21:40:52 +02:00
; License :: BSD 3-Clause Clear License
2021-07-22 13:01:18 +02:00
Operating System :: Unix
[options]
package_dir =
= src
packages = find:
python_requires = >=3.6
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=
2023-06-14 21:36:31 +02:00
exec-notify = exec_notify.main:main
2023-06-14 21:16:09 +02:00
do-notify = exec_notify.do_notify:main