Metadata-Version: 2.1
Name: case-changer
Version: 0.1.0
Summary: A python port of the npm package `change-case`
Home-page: https://github.com/philipptempel/python-case-changer
Author: Philipp Tempel
Author-email: python@philipptempel.me
License: MIT
Project-URL: Documentation, https://python-case-changer.readthedocs.io/
Project-URL: Changelog, https://python-case-changer.readthedocs.io/en/latest/changelog.html
Project-URL: Issue Tracker, https://github.com/philipptempel/python-case-changer/issues
Keywords: case changer,case conversion,string manipulation
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
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: Topic :: Utilities
Requires-Python: !=2.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
Requires-Dist: click

========
Overview
========



A python port of the npm package `change-case <https://github.com/blakeembrey/change-case/>`_.

    Transform a string between camelCase, PascalCase, Capital Case, snake_case, param-case, CONSTANT_CASE and others.

* Free software: MIT license

Installation
============

::

    pip install case-changer

You can also install the in-development version with::

    pip install https://github.com/philipptempel/python-case-changer/archive/master.zip


Documentation
=============


https://python-case-changer.readthedocs.io/


Development
===========

To run the all tests run::

    tox

Note, to combine the coverage data from all the tox environments run:

.. list-table::
    :widths: 10 90
    :stub-columns: 1

    - - Windows
      - ::

            set PYTEST_ADDOPTS=--cov-append
            tox

    - - Other
      - ::

            PYTEST_ADDOPTS=--cov-append tox


Changelog
=========

0.1.0 (2020-03-30)
------------------

* First release on PyPI.


