├── .gitignore ├── LICENSE ├── README.rst ├── imohash ├── __init__.py ├── imohash.py └── imohash_test.py ├── pyproject.toml ├── setup.cfg └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalafut/py-imohash/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalafut/py-imohash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalafut/py-imohash/HEAD/README.rst -------------------------------------------------------------------------------- /imohash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalafut/py-imohash/HEAD/imohash/__init__.py -------------------------------------------------------------------------------- /imohash/imohash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalafut/py-imohash/HEAD/imohash/imohash.py -------------------------------------------------------------------------------- /imohash/imohash_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalafut/py-imohash/HEAD/imohash/imohash_test.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalafut/py-imohash/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalafut/py-imohash/HEAD/tox.ini --------------------------------------------------------------------------------