first commit

This commit is contained in:
Romulus21
2025-10-31 21:30:15 +01:00
commit 6f54f1663f
4 changed files with 51 additions and 0 deletions

17
setup.py Executable file
View File

@@ -0,0 +1,17 @@
from setuptools import setup
setup(
name="OctoPrint-WebhookOnPrintDone",
version="1.0.0",
description="Un plugin OctoPrint qui envoie une requête webhook à la fin d'une impression.",
author="Ton Nom",
author_email="ton.email@example.com",
url="https://github.com/ton-repo", # Mettre un lien vers ton repo si tu en as un
packages=["octoprint_WebhookOnPrintDone"],
install_requires=["requests"],
entry_points={
"octoprint.plugin": [
"WebhookOnPrintDone = octoprint_WebhookOnPrintDone"
]
},
)