add readme
All checks were successful
Python package / lint (push) Successful in 7s
Publish Python 🐍 distribution 📦 to PyPI and TestPyPI / Publish Python 🐍 distribution 📦 to TestPyPI (push) Successful in 4s
Publish Python 🐍 distribution 📦 to PyPI and TestPyPI / Build distribution 📦 (push) Successful in 8s
Publish Python 🐍 distribution 📦 to PyPI and TestPyPI / Publish Python 🐍 distribution 📦 to PyPI (push) Has been skipped
Publish Python 🐍 distribution 📦 to PyPI and TestPyPI / Sign the Python 🐍 distribution 📦 with Sigstore and upload them to GitHub Release (push) Has been skipped

This commit is contained in:
Brendan Haines 2024-09-14 13:25:58 -06:00
parent ec588758e0
commit e89b1d1c89
2 changed files with 8 additions and 0 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Goat Monitor
A command line tool for remotely monitoring command execution

View File

@ -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",