Metadata-Version: 2.4
Name: csu
Version: 1.22.1
Summary: Clean Slate Utils - bunch of utility code, mostly Django/DRF specific.
Author-email: Ionel Cristian Mărieș <contact@ionelmc.ro>
License-Expression: BSD-2-Clause
Project-URL: Sources, https://github.com/ionelmc/python-csu
Project-URL: Changelog, https://github.com/ionelmc/python-csu/blob/master/CHANGELOG.rst
Project-URL: Issue Tracker, https://github.com/ionelmc/python-csu/issues
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
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 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
Requires-Python: >=3.14
Description-Content-Type: text/x-rst
License-File: LICENSE
Provides-Extra: http
Requires-Dist: httpx; extra == "http"
Provides-Extra: xml
Requires-Dist: defusedxml; extra == "xml"
Provides-Extra: django
Requires-Dist: django; extra == "django"
Requires-Dist: djangorestframework; extra == "django"
Requires-Dist: django-crispy-forms; extra == "django"
Requires-Dist: django-import-export; extra == "django"
Provides-Extra: phonenumber
Requires-Dist: phonenumberslite; extra == "phonenumber"
Requires-Dist: django-phonenumber-field; extra == "phonenumber"
Dynamic: license-file

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


.. list-table::
    :stub-columns: 1

    * - tests
      - |github-actions| |coveralls| |codecov| |scrutinizer| |codacy|
    * - package
      - |version| |wheel| |supported-versions| |supported-implementations| |commits-since|
.. |github-actions| image:: https://github.com/ionelmc/python-csu/actions/workflows/github-actions.yml/badge.svg
    :alt: GitHub Actions Build Status
    :target: https://github.com/ionelmc/python-csu/actions
.. |coveralls| image:: https://coveralls.io/repos/github/ionelmc/python-csu/badge.svg?branch=main
    :alt: Coverage Status
    :target: https://coveralls.io/github/ionelmc/python-csu?branch=main
.. |codecov| image:: https://codecov.io/gh/ionelmc/python-csu/branch/main/graphs/badge.svg?branch=main
    :alt: Coverage Status
    :target: https://app.codecov.io/github/ionelmc/python-csu
.. |codacy| image:: https://img.shields.io/codacy/grade/[Get ID from https://app.codacy.com/gh/ionelmc/python-csu/settings].svg
    :target: https://www.codacy.com/app/ionelmc/python-csu
    :alt: Codacy Code Quality Status
.. |version| image:: https://img.shields.io/pypi/v/csu.svg
    :alt: PyPI Package latest release
    :target: https://pypi.org/project/csu
.. |wheel| image:: https://img.shields.io/pypi/wheel/csu.svg
    :alt: PyPI Wheel
    :target: https://pypi.org/project/csu
.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/csu.svg
    :alt: Supported versions
    :target: https://pypi.org/project/csu
.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/csu.svg
    :alt: Supported implementations
    :target: https://pypi.org/project/csu
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-csu/v1.22.1.svg
    :alt: Commits since latest release
    :target: https://github.com/ionelmc/python-csu/compare/v1.22.1...main
.. |scrutinizer| image:: https://img.shields.io/scrutinizer/quality/g/ionelmc/python-csu/main.svg
    :alt: Scrutinizer Status
    :target: https://scrutinizer-ci.com/g/ionelmc/python-csu/


Clean Slate Utils - bunch of utility code, mostly Django/DRF specific.

* Free software: BSD 2-Clause License

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

::

    pip install csu

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

    pip install https://github.com/ionelmc/python-csu/archive/main.zip


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

None.

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

To run all the 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.0.0 (2024-03-24)
------------------

* First release on PyPI.
