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", + ], +)