2024-09-14 12:52:15 -06:00
|
|
|
from setuptools import setup
|
|
|
|
|
2024-09-14 13:25:58 -06:00
|
|
|
with open("README.md", "r") as f:
|
|
|
|
long_description = f.read()
|
|
|
|
|
2024-09-14 12:52:15 -06:00
|
|
|
setup(
|
|
|
|
name="goat_monitor",
|
|
|
|
version="0.0.0",
|
|
|
|
description="Remote monitoring of anything",
|
2024-09-14 13:25:58 -06:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
2024-09-14 12:52:15 -06:00
|
|
|
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",
|
|
|
|
],
|
2024-09-14 13:42:58 -06:00
|
|
|
entry_points={
|
|
|
|
"console_scripts": [
|
|
|
|
"goat_monitor = goat_monitor.goat_monitor:main",
|
|
|
|
],
|
|
|
|
},
|
2024-09-14 12:52:15 -06:00
|
|
|
)
|