mirror of
https://codeberg.org/privacy1st/exec-notify
synced 2024-12-22 23:16:04 +01:00
37 lines
1.0 KiB
INI
37 lines
1.0 KiB
INI
; 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 = execute command and notify about failure via email
|
|
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 :: BSD 3-Clause Clear License
|
|
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
|