├── .circleci └── config.yml ├── LICENSE ├── MANIFEST ├── Makefile ├── README.md ├── accumulation_tree ├── __init__.py ├── abctree.py ├── accumulation_tree.pyx └── treeslice.py ├── check_sdist.sh ├── pyproject.toml ├── setup.py └── tests.md /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkluck/accumulation_tree/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkluck/accumulation_tree/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkluck/accumulation_tree/HEAD/MANIFEST -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkluck/accumulation_tree/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkluck/accumulation_tree/HEAD/README.md -------------------------------------------------------------------------------- /accumulation_tree/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkluck/accumulation_tree/HEAD/accumulation_tree/__init__.py -------------------------------------------------------------------------------- /accumulation_tree/abctree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkluck/accumulation_tree/HEAD/accumulation_tree/abctree.py -------------------------------------------------------------------------------- /accumulation_tree/accumulation_tree.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkluck/accumulation_tree/HEAD/accumulation_tree/accumulation_tree.pyx -------------------------------------------------------------------------------- /accumulation_tree/treeslice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkluck/accumulation_tree/HEAD/accumulation_tree/treeslice.py -------------------------------------------------------------------------------- /check_sdist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkluck/accumulation_tree/HEAD/check_sdist.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkluck/accumulation_tree/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkluck/accumulation_tree/HEAD/setup.py -------------------------------------------------------------------------------- /tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkluck/accumulation_tree/HEAD/tests.md --------------------------------------------------------------------------------