commit 5be5c4b444495b0d77f849a4e3591991757474b9 Author: Théophile Bastian Date: Mon Dec 12 14:12:15 2022 +0100 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..44e3cb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.sqlite3 +*.egg-info diff --git a/README.md b/README.md new file mode 100644 index 0000000..0b5cfa4 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Netmon + +Monitors and records network errors using ping diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..eb0b3cc --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +#!/usr/bin/env python3 + +from setuptools import setup, find_packages +import sys + +setup( + name="netmon", + version="0.0.1", + description="Monitors and records the network state", + author="Théophile BASTIAN", + license="LICENSE", + url="https://git.tobast.fr/tobast/netmon", + packages=find_packages(), + include_package_data=True, + package_data={"netmon": ["py.typed"]}, + long_description=open("README.md").read(), + install_requires=[], + entry_points={ + "console_scripts": [ + ("netmon = netmon.entry:entry"), + ] + }, +)