Metadata-Version: 2.1
Name: cleanliness
Version: 0.1.0
Summary: Basic cleaning of text
Home-page: https://github.com/sorenlind/cleanliness/
Author: Soren Lind Kristiansen
Author-email: sorenlind@mac.com
License: UNKNOWN
Description: # 🛀 Cleanliness
        
        Cleanliness is a package for doing (very) basic cleaning of text. It can be used for preprocessing input to various
        natural language processing tasks.
        
        ## Install
        
        Download the source from GitHub, then install using pip (from the repo directory):
        
        ```python
        pip3 install -e .
        ```
        
        ## Usage
        
        ```python
        from cleanliness import normalize_whitespace
        clean_text = normalize_whitespace("This\ntext\t\contains  odd\n\t whitespace.")
        ```
        
Keywords: nlp text cleaning
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Danish
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Text Processing :: Linguistic
Provides-Extra: test
Provides-Extra: notebooks
Provides-Extra: dev
