├── .coveragerc ├── .gitignore ├── .travis.yml ├── MANIFEST.in ├── README.rst ├── UNLICENSE ├── humanhash.py └── setup.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | source = humanhash.py 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blag/humanhash/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blag/humanhash/HEAD/.travis.yml -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blag/humanhash/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blag/humanhash/HEAD/README.rst -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blag/humanhash/HEAD/UNLICENSE -------------------------------------------------------------------------------- /humanhash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blag/humanhash/HEAD/humanhash.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blag/humanhash/HEAD/setup.py --------------------------------------------------------------------------------