goat_monitor/setup.py
Brendan Haines e89b1d1c89
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
add readme
2024-09-14 13:25:58 -06:00

24 lines
581 B
Python

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",
license="MIT",
packages=["goat_monitor"],
install_requires=[
"numpy",
"toml",
"click",
"gotify",
],
)