From 2e6c680d9b0cb079870657994bf191c59c0f193f Mon Sep 17 00:00:00 2001 From: Brendan Haines Date: Sat, 14 Sep 2024 12:52:15 -0600 Subject: [PATCH] add content to setup.py --- setup.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/setup.py b/setup.py index e69de29..e313490 100644 --- a/setup.py +++ b/setup.py @@ -0,0 +1,18 @@ +from setuptools import setup + +setup( + name="goat_monitor", + version="0.0.0", + description="Remote monitoring of anything", + url="https://git.brendanhaines.com/brendanhaines/goat_monitor", + author="Brendan Haines", + author_email="brendan.haines@gmail.com", + license="MIT", + packages=["goat_monitor"], + install_requires=[ + "numpy", + "toml", + "click", + "gotify", + ], +)