├── CHANGELOG.md ├── LICENSE ├── README.md ├── dehumanizer ├── __init__.py ├── dehumanizer.py └── version.py └── setup.py /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamStudio8/dehumanizer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamStudio8/dehumanizer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamStudio8/dehumanizer/HEAD/README.md -------------------------------------------------------------------------------- /dehumanizer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dehumanizer/dehumanizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamStudio8/dehumanizer/HEAD/dehumanizer/dehumanizer.py -------------------------------------------------------------------------------- /dehumanizer/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.9.0" 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamStudio8/dehumanizer/HEAD/setup.py --------------------------------------------------------------------------------