first commit
This commit is contained in:
17
setup.py
Executable file
17
setup.py
Executable 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"
|
||||
]
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user