lowhum 0.4.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.
lowhum/__init__.py ADDED
@@ -0,0 +1,19 @@
1
+ """LowHum: deep brown noise for focus."""
2
+
3
+ try:
4
+ from importlib.metadata import metadata as _metadata
5
+
6
+ _meta = _metadata("lowhum")
7
+ __version__ = _meta["Version"]
8
+ __title__ = _meta["Name"]
9
+ __author__ = _meta["Author"]
10
+ __license__ = _meta["License-Expression"]
11
+ __summary__ = _meta["Summary"]
12
+ __url__ = _meta["Project-URL"].split(", ", 1)[1] # "Homepage, https://..."
13
+ except Exception:
14
+ __version__ = "0.4.0"
15
+ __title__ = "lowhum"
16
+ __author__ = "Luis Markmann"
17
+ __license__ = "MIT"
18
+ __summary__ = "Deep Brown Noise for Focus as a MenuBar App & CLI Tool"
19
+ __url__ = "https://lmarkmann.github.io/lowhum/"