18 lines
562 B
Python
Executable File
18 lines
562 B
Python
Executable File
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"
|
|
]
|
|
},
|
|
)
|