Metadata-Version: 2.1
Name: konst
Version: 1.0.1
Summary: Effortless, meaningless, DRY constants
Home-page: https://github.com/yehonatanz/konst
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.6
Provides-Extra: dev
Requires-Dist: isort; extra == 'dev'
Requires-Dist: black; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: pytest-watch; extra == 'dev'
Requires-Dist: pytest-cov; extra == 'dev'

konst
==========


.. image:: https://travis-ci.com/yehonatanz/konst.svg?branch=master
    :target: https://travis-ci.com/yehonatanz/konst

.. image:: https://codecov.io/gh/yehonatanz/konst/branch/master/graph/badge.svg
  :target: https://codecov.io/gh/yehonatanz/konst

.. image:: https://api.codeclimate.com/v1/badges/23274b375351ba37b8b2/maintainability
   :target: https://codeclimate.com/github/yehonatanz/konst/maintainability
   :alt: Maintainability


Effortless, meaningless, DRY constants

.. code-block:: python

    from konst.string import RED
    from konst.symbol import FLOWER

    assert RED == 'RED'
    assert FLOWER.name == 'FLOWER'


