A Python library for wrangling atproto-flavoured Merkle Search Trees
Current status:
git clone https://github.com/DavidBuchanan314/atmst
cd atmst
python3 -m pip install .
dev install: (editable)
python3 -m pip install -e .
Running the tests:
python3 -m unittest discover -v
build the docs:
cd docs/
sphinx-apidoc -f -o _apidocs/ ../src/atmst ../src/atmst/all.py
make html
# open _build/html/index.html
publishing to pypi: (this one is mainly for my benefit!)
python3 -m build
python3 -m twine upload --repository pypi dist/*