add packaging files
This commit is contained in:
parent
ec66aa40de
commit
f544d8eef9
5 changed files with 27 additions and 3 deletions
|
@ -1,5 +1,3 @@
|
||||||
# Kassandra
|
# Kassandra
|
||||||
|
|
||||||
# Kassandra
|
|
||||||
|
|
||||||
Kassandra is a matrix bot receiving alert from [alermanager](https://www.prometheus.io/docs/alerting/latest/alertmanager/) end send them to a [matrix](matrix.org/) room.
|
Kassandra is a matrix bot receiving alert from [alermanager](https://www.prometheus.io/docs/alerting/latest/alertmanager/) end send them to a [matrix](matrix.org/) room.
|
3
pyproject.toml
Normal file
3
pyproject.toml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[build-system]
|
||||||
|
requires = ["setuptools>=42.0", "wheel"]
|
||||||
|
build-backend = "setuptools.build_meta"
|
18
setup.cfg
Normal file
18
setup.cfg
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
[metadata]
|
||||||
|
name = kassandra
|
||||||
|
author = Jean-Marie 'Histausse' Mineau
|
||||||
|
author_email = histausse@protonmail
|
||||||
|
description = A bot sending alert from alertmanager to matrix
|
||||||
|
long_description = file:README.md
|
||||||
|
long_description_content_type = text/markdown
|
||||||
|
url = https://gitea.auro.re/histausse/kassandra
|
||||||
|
|
||||||
|
[options]
|
||||||
|
packages = kassandra
|
||||||
|
python_requires = >=3.9.2
|
||||||
|
package_dir = =src
|
||||||
|
install_requires =
|
||||||
|
matrix-bot @ git+https://gitea.auro.re/histausse/matrix-bot.git
|
||||||
|
|
||||||
|
[options.package_data]
|
||||||
|
matrix_bot = py.typed
|
5
setup.py
Normal file
5
setup.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from setuptools import setup
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
setup()
|
||||||
|
|
0
src/kassandra/__init__.py
Normal file
0
src/kassandra/__init__.py
Normal file
Loading…
Reference in a new issue