From e89b1d1c8976af477e993d928a56f928df2d1a79 Mon Sep 17 00:00:00 2001 From: Brendan Haines Date: Sat, 14 Sep 2024 13:25:58 -0600 Subject: [PATCH] add readme --- README.md | 3 +++ setup.py | 5 +++++ 2 files changed, 8 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..6889aec --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Goat Monitor + +A command line tool for remotely monitoring command execution \ No newline at end of file diff --git a/setup.py b/setup.py index e313490..39f39cb 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,14 @@ from setuptools import setup +with open("README.md", "r") as f: + long_description = f.read() + setup( name="goat_monitor", version="0.0.0", description="Remote monitoring of anything", + long_description=long_description, + long_description_content_type="text/markdown", url="https://git.brendanhaines.com/brendanhaines/goat_monitor", author="Brendan Haines", author_email="brendan.haines@gmail.com",