entropymon 2.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
entropymon/__init__.py ADDED
@@ -0,0 +1,3 @@
1
+ """entropymon - Terminal system monitor by Electric Entropy Lab."""
2
+
3
+ __version__ = "2.0.0"
entropymon/__main__.py ADDED
@@ -0,0 +1,5 @@
1
+ """Allow running as: python -m entropymon"""
2
+ from entropymon.monitor import main
3
+
4
+ if __name__ == "__main__":
5
+ main()