Metadata-Version: 1.2
Name: rasmipy
Version: 0.1rc1
Summary: Reduce Arabic strings to their rasm, ie remove vocalization and other diacritics.
Home-page: https://github.com/telota/rasmipy
Author: Oliver Pohl, Frank Sachsenheim
Author-email: telota@bbaw.de
License: LGPLv3
Description: rasmipy
        =======
        
        Reduce Arabic strings to their rasm, i.e. remove vocalization and other
        diacritics
        
        Resources
        ---------
        
        - About the rasm writing script: https://en.wikipedia.org/wiki/Rasm
        - Code repository: https://github.com/telota/rasmipy
        - On the Python Package Index: https://pypi.python.org/pypi/rasmipy
        - PHP implementation: https://packagist.org/packages/telota/rasmify
        - Javascript implementation: https://github.com/telota/rasmify.js
        - Web demo: https://telota.github.io/rasmify.js/demo/
        
        Installation
        ------------
        
        From the Python Package Index:
        
            $ pip install ramsipy
        
        From the sources:
        
            $ python setup.py install
        
        Usage
        -----
        
        .. code-block:: python
        
            >>> from rasmipy import rasmify
            >>> rasmify('الفَاتِحَة')
            'الڡاٮحه'
        
        
        Contributing
        ------------
        
        In order to run the tests, you need to install pytest and related packages,
        preferably in a virtual environment:
        
            $ pip install -r requirements-dev.txt
        
        Install ``rasmipy`` in an editable mode:
        
            $ python setup.py develop
        
        Before committing changes, you should run the tests:
        
            # in the project's root directory
            $ pytest
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: Arabic
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Text Processing :: Linguistic
Requires-Python: >=3
