; setup.cfg is the configuration file for setuptools.
; https://packaging.python.org/tutorials/packaging-projects/#configuring-metadata

[metadata]
name = exec_notify
version = 0.1.10
author = Daniel Langbein
author_email = daniel@systemli.org
description = email notification if command fails
long_description = file: README.md
long_description_content_type = text/markdown
url = https://codeberg.org/privacy1st/exec-notify
project_urls =
    Bug Tracker = https://codeberg.org/privacy1st/exec-notify/issues

; https://pypi.org/classifiers/
classifiers =
    Development Status :: 4 - Beta
    Programming Language :: Python :: 3
    License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
    Operating System :: Unix

[options]
package_dir =
    = src
packages = find:
python_requires = >=3.6

[options.packages.find]
where = src

[options.entry_points]
; https://setuptools.readthedocs.io/en/latest/userguide/entry_point.html
console_scripts=
    exec-notify = exec_notify.main:main
    do-notify = exec_notify.do_notify:main