tidemark 0.1.3

Snapshot a directory tree and diff what changed - no git required. Built for humans and agents.
Documentation
1
2
3
4
5
6
7
8
9
10
"""
tidemark: snapshot a directory tree and diff what changed - no git required.
"""

try:
    from importlib.metadata import version
    __version__ = version("tidemark")
except ImportError:
    from importlib_metadata import version
    __version__ = version("tidemark")