exec-notify/setup.cfg
2021-07-22 16:20:03 +02:00

34 lines
968 B
INI

# setup.cfg is the configuration file for setuptools.
# https://packaging.python.org/tutorials/packaging-projects/#configuring-metadata
# https://pypi.org/classifiers/
[metadata]
name = de.p1st.exec_notify
version = 0.1.0
author = Daniel Langbein
author_email = daniel@systemli.org
description = Send mail with process output
long_description = file: README.md
long_description_content_type = text/markdown
url = https://codeberg.org/langfingaz/execNotify
project_urls =
Bug Tracker = https://codeberg.org/langfingaz/execNotify/issues
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
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]
package_dir =
= src
packages = find:
python_requires = >=3.8
[options.packages.find]
where = src