Initial commit
This commit is contained in:
commit
5be5c4b444
3 changed files with 28 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
*.sqlite3
|
||||
*.egg-info
|
3
README.md
Normal file
3
README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Netmon
|
||||
|
||||
Monitors and records network errors using ping
|
23
setup.py
Executable file
23
setup.py
Executable file
|
@ -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"),
|
||||
]
|
||||
},
|
||||
)
|
Loading…
Reference in a new issue