mirror of
https://codeberg.org/privacy1st/exec-notify
synced 2024-12-22 23:16:04 +01:00
28 lines
777 B
INI
28 lines
777 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-execNotify
|
||
|
version = 0.0.2
|
||
|
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 =
|
||
|
Programming Language :: Python :: 3
|
||
|
License :: OSI Approved :: MIT License
|
||
|
Operating System :: Unix
|
||
|
|
||
|
[options]
|
||
|
package_dir =
|
||
|
= src
|
||
|
packages = find:
|
||
|
python_requires = >=3.8
|
||
|
|
||
|
[options.packages.find]
|
||
|
where = src
|