goat_monitor/setup.py

19 lines
424 B
Python
Raw Normal View History

2024-09-14 12:52:15 -06:00
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",
],
)