├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── hdfdict ├── __init__.py └── hdfdict.py ├── pyproject.toml ├── setup.py └── tests └── test_hdfdict.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiggiGue/hdfdict/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiggiGue/hdfdict/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiggiGue/hdfdict/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiggiGue/hdfdict/HEAD/README.md -------------------------------------------------------------------------------- /hdfdict/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiggiGue/hdfdict/HEAD/hdfdict/__init__.py -------------------------------------------------------------------------------- /hdfdict/hdfdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiggiGue/hdfdict/HEAD/hdfdict/hdfdict.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiggiGue/hdfdict/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiggiGue/hdfdict/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_hdfdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiggiGue/hdfdict/HEAD/tests/test_hdfdict.py --------------------------------------------------------------------------------