From 5be5c4b444495b0d77f849a4e3591991757474b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Bastian?= Date: Mon, 12 Dec 2022 14:12:15 +0100 Subject: [PATCH] Initial commit --- .gitignore | 2 ++ README.md | 3 +++ setup.py | 23 +++++++++++++++++++++++ 3 files changed, 28 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100755 setup.py 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"), + ] + }, +)