Metadata-Version: 2.1
Name: srtools
Version: 0.1.6
Summary: Serbian language Cyrillic ↔ Latin transliteration tools
Home-page: https://gitlab.com/andrejr/srtools
Author: Andrej Radović
Author-email: r.andrej@gmail.com
License: GPLv3+
Description: 
        #######
        srtools
        #######
        
        .. image:: https://gitlab.com/andrejr/srtools/badges/master/pipeline.svg
           :alt: pipeline status
           :target: https://gitlab.com/andrejr/srtools/pipelines
        .. image:: https://gitlab.com/andrejr/srtools/badges/master/coverage.svg
           :alt: coverage report
           :target: https://andrejr.gitlab.io/srtools/coverage/index.html
        
        Srtools provides a CLI utility (``srts``) and a Python 3 (``^3.7``) package 
        that helps you transliterate Serbian texts between Cyrillic and Latin.
        
        Here's a demonstration of the CLI utility:
        
        .. code-block:: console
        
           $ echo "Đače, uštedu plaćaj žaljenjem zbog džinovskih cifara." | srts --lc
           Ђаче, уштеду плаћај жаљењем због џиновских цифара.
           $ echo "Ђаче, уштеду плаћај жаљењем због џиновских цифара." | srts --cl
           Đače, uštedu plaćaj žaljenjem zbog džinovskih cifara.
        
        Here's how you use the Python package:
        
        .. code-block:: python
        
           from srtools import cyrillic_to_latin, latin_to_cyrillic
        
           assert (
               latin_to_cyrillic("Đače, uštedu plaćaj žaljenjem zbog džinovskih cifara.")
               == "Ђаче, уштеду плаћај жаљењем због џиновских цифара."
           )
        
           assert (
               cyrillic_to_latin("Ђаче, уштеду плаћај жаљењем због џиновских цифара.")
               == "Đače, uštedu plaćaj žaljenjem zbog džinovskih cifara."
           )
        
        
        Motivation
        ==========
        
        I needed a simple commandline utility I can use to pipe in some text and change
        its script.
        
        I also use this tool to transliterate strings in Serbian LaTeX localization 
        packages. That way I don't have to maintain individual sets of localization 
        strings for Cyrillic and Latin.
        
        Documentation
        =============
        
        Documentation (Sphinx) can be viewed on
        `GitLab pages for this package <https://andrejr.gitlab.io/srtools/>`_.
        
        Changelog
        =========
        
        The changelog can be found within the documentation, 
        `here <https://andrejr.gitlab.io/srtools/changes.html>`_.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: Serbian
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: Environment :: Console
Classifier: Topic :: Software Development :: Localization
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Text Processing :: Linguistic
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7.0
Description-Content-Type: text/x-rst; charset=UTF-8
