Metadata-Version: 1.1
Name: KegElements
Version: 0.4.1
Summary: A testing ground for Keg related code and ideas.
Home-page: https://github.com/level12/keg-elements
Author: Randy Syring
Author-email: randy.syring@level12.io
License: BSD
Description: .. default-role:: code
        
        Keg Elements
        ####################
        
        
        .. image:: https://circleci.com/gh/level12/keg-elements.svg?style=svg
          :target: https://circleci.com/gh/level12/keg-elements
        
        .. image:: https://codecov.io/github/level12/keg-elements/coverage.svg?branch=master
          :target: https://codecov.io/github/level12/keg-elements?branch=master
        
        
        Keg Elements is the testing ground for ideas and code that will eventually make their way into
        `Keg`_ or an official Keg extension.
        
        
        .. _Keg: https://pypi.python.org/pypi/Keg
        
        Development *beta*
        ==================
        
        To develop on this project, begin by running our tests::
        
            git clone https://github.com/level12/keg-elements keg-elements-src
            cd keg-elements-src
            tox
        
        You can then examine tox.ini for insights into our development process.  In particular, we:
        
        * use `py.test` for testing (and coverage analysis)
        * use `flake8` for linting
        * store `pip` requirements files in `requirements/`
        * cache wheels in `requirements/wheelhouse` for faster & more reliable CI builds
        
        Dependency Management
        ---------------------
        
        Adding a dependency involves:
        
        #. If it's a run-time dependency, add to `setup.py`.
        #. Adding the dependency to one of the requirements files in `requirements/`.
        #. Running `requirements/build-wheelhouse.py`.
        
        Preview Readme
        --------------
        
        When updating the readme, use `restview --long-description` to preview changes.
        
        
        Issues & Discussion
        ====================
        
        Please direct questions, comments, bugs, feature requests, etc. to:
        https://github.com/level12/keg-elements/issues
        
        Current Status
        ==============
        
        Beta
        
        
        Changelog
        =========
        
        0.4.1 - 2016-10-19
        ------------------
        
        * Add unique form validator (a0c7447_)
        
        .. _a0c7447: https://github.com/level12/keg-elements/commit/a0c7447
        
        
        0.4.0 - 2016-09-08
        ------------------
        
        * FEATURE: Port ``MethodsMixin`` with a number of helpful functions when working with
          SQLAlchemy ORM entites. (GH-49_, GH-51_)
        * FEATURE: Add a new TimeZone Column. (GH-50_)
        
        * MAINTENANCE: Provide better testing support for polymorphic SQLAlchemy
          ORM entities. (GH-47_)
        
        * BUG: Fix descripions when implicitly rendering checkboxes (GH-48_)
        
        .. _GH-50: https://github.com/level12/keg-elements/pull/50
        .. _GH-51: https://github.com/level12/keg-elements/pull/51
        .. _GH-49: https://github.com/level12/keg-elements/pull/49
        .. _GH-48: https://github.com/level12/keg-elements/pull/48
        .. _GH-47: https://github.com/level12/keg-elements/pull/47
        
        
        0.3.2 - 2016-08-03
        ------------------
        * Support `dirty_check` flag on form objects (GH-46_)
        
        .. _GH-46: https://github.com/level12/keg-elements/pull/46
        
        
        0.3.1
        ------
        
        * Allow FieldMeta to override default widget and add extra validators (GH-38)
        * Allow customization of readonly and disabled attributes on input, select, and radio fields (GH-37)
        * Improve the logic for when to default a form field to RequiredBoolRadioField (GH-36)
        * Upgrades to the CI Environment
        
        0.3.0
        -----
        
        * Allow static renders to be configured with custom macros. (GH-34)
        * Syncronize static templates with dynamic templates. (GH-31)
        * You can now give a field a description with a string or callback. (GH-23, GH-22)
        * Introduced a RequiredBoolReadioField for use with boolean columns. (GH-25)
        * Support randomly filling EmailTypes. (GH-24)
        * Support additional parameters for randomizing integers. (GH-19)
        * ``testing_create`` will randomly select a boolean value for SQLAlchemy boolean
          fields. (GH-28)
        * We now have a working CI. (GH-27)
        * Constraint tests will fail if all fields are not covered. (GH-21)
        * Introduced a new form-upload macro. (GH-18)
        * Static render now uses element.data unless it is a SelectField (GH-16)
        * ``MethodsMixin`` has a new ``to_dict`` method. (d83d93f)
        * ``MethodsMixin`` has a new ``ensure`` method. (e5687ed)
        
        
        * Fix bug where static renderes whould not output the label. (GH-33)
        * Fix property names when using automatic test cases. (GH-29)
        * Fix issue where we wouldn't use a consistent json parser. (GH-13)
        * Fix a bug where polymorphic columns are included in ``testing_create``. (147c23)
        
        
        development version: 2015-07-28
        -------------------------------
        
        * Add db.mixins with DefaultColsMixin (id, Arrow lib UTC timestamps) and MethodsMixin (incomplete).
        * Some MethodsMixin methods now have support for commit/flush parameters.
        * Add .testing:EntityBase which uses named tuples to declare the checks needed and adds some
          additional logic.
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
