├── .github ├── FUNDING.yml └── workflows │ ├── create-release.yml │ ├── publish-package.yml │ └── run-tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── poetry.lock ├── pyproject.toml ├── scripts └── update_version.py ├── simple_pytree ├── __init__.py ├── dataclass.py └── pytree.py └── tests └── test_pytree.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarciae/simple-pytree/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarciae/simple-pytree/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarciae/simple-pytree/HEAD/.github/workflows/publish-package.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarciae/simple-pytree/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarciae/simple-pytree/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarciae/simple-pytree/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarciae/simple-pytree/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarciae/simple-pytree/HEAD/README.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarciae/simple-pytree/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarciae/simple-pytree/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/update_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarciae/simple-pytree/HEAD/scripts/update_version.py -------------------------------------------------------------------------------- /simple_pytree/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarciae/simple-pytree/HEAD/simple_pytree/__init__.py -------------------------------------------------------------------------------- /simple_pytree/dataclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarciae/simple-pytree/HEAD/simple_pytree/dataclass.py -------------------------------------------------------------------------------- /simple_pytree/pytree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarciae/simple-pytree/HEAD/simple_pytree/pytree.py -------------------------------------------------------------------------------- /tests/test_pytree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarciae/simple-pytree/HEAD/tests/test_pytree.py --------------------------------------------------------------------------------