Initial commit.

This commit is contained in:
retoor 2025-01-02 17:21:56 +01:00
parent 2a7c45664a
commit 52b483674c
7 changed files with 10 additions and 8 deletions

View File

@ -1,7 +1,7 @@
BIN = ./.venv/bin/ BIN = ./.venv/bin/
PYTHON = ./.venv/bin/python PYTHON = ./.venv/bin/python
PIP = ./.venv/bin/pip PIP = ./.venv/bin/pip
APP_NAME=boeh APP_NAME=metriki
all: install build all: install build
@ -24,5 +24,5 @@ build:
$(PYTHON) -m build $(PYTHON) -m build
run: run:
$(BIN)$(APP_NAME) --port=3028 $(BIN)$(APP_NAME).serve --port=4000

View File

@ -1,4 +1,4 @@
# Boeh # Metriki
## Description ## Description
Matrix bot written in Python that says boeh everytime that Joe talks. He knows why. System for advanced metrics.

View File

@ -1,7 +1,7 @@
[metadata] [metadata]
name = boeh name = metriki
version = 1.0.0 version = 1.0.0
description = Service that says boeh when Joe talks. description = Web metrics
author = retoor author = retoor
author_email = retoor@molodetz.nl author_email = retoor@molodetz.nl
license = MIT license = MIT
@ -15,11 +15,13 @@ package_dir =
python_requires = >=3.7 python_requires = >=3.7
install_requires = install_requires =
app @ git+https://retoor.molodetz.nl/retoor/app app @ git+https://retoor.molodetz.nl/retoor/app
matrix-nio requests
[options.packages.find] [options.packages.find]
where = src where = src
[options.entry_points] [options.entry_points]
console_scripts = console_scripts =
boeh = boeh.__main__:main metrici.serve = metriki.__main__:main
metrici.stats = metriki.stats:main

0
src/metriki/app.py Normal file
View File