Metadata-Version: 1.1
Name: expatriate
Version: 0.3
Summary: Library wrapping expat for parsing and generating XML and mapping objects from XML
Home-page: https://github.com/cjaymes/expatriate
Author: Casey Jaymes
Author-email: cjaymes@gmail.com
License: LGPL
Description: expatriate
        ==========
        .. image:: https://travis-ci.org/cjaymes/expatriate.svg?branch=master
        .. image:: https://readthedocs.org/projects/expatriate/badge/?version=latest
        
        XML parsing and generation library on top of expat with Python object mapping
        (ORM). See tests/fixtures for examples of how to use.
        
        Install (system-wide):
        
            pip install expatriate
        
        Install (using venv):
        
            python3 -m venv venv
            . venv/bin/activate
            pip install --upgrade pip
            pip install -r requirements.txt
            python3 setup.py install
        
        Tests:
        
            pip install pytest
            pytest
        
        CHANGELOG
        =========
        0.3
            Added documentation, updated meta files
        0.2
            Added modeling
        0.1
            Initial release
        
Keywords: XML
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Markup :: XML
