Metadata-Version: 1.2
Name: oasapi
Version: 0.1.2
Summary: Python library for Web APIs leveraging OpenAPI/Swagger specification
Home-page: https://github.com/sdementen/oasapi
Author: Sebastien de Menten
Author-email: sdementen@gmail.com
License: BSD-3-Clause
Project-URL: Documentation, https://oasapi.readthedocs.io/
Project-URL: Changelog, https://oasapi.readthedocs.io/en/latest/changelog.html
Project-URL: Issue Tracker, https://github.com/sdementen/oasapi/issues
Description: ========
        Overview
        ========
        
        
        
        Python library for Web APIs leveraging OpenAPI/Swagger specification
        
        * Free software: BSD 3-Clause License
        
        Installation
        ============
        
        ::
        
            pip install oasapi
        
        You can also install the in-development version with::
        
            pip install https://github.com/sdementen/oasapi/archive/master.zip
        
        
        Documentation
        =============
        
        
        https://oasapi.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.2 (2019-01-08)
        ------------------
        
        * Fix model & reporting of duplicate operationIds
        * Add documentation on the CLI Usage
        
        0.1.1 (2019-01-08)
        ------------------
        
        * Add pyyaml dependencies (to support OAS in yaml format)
        
        0.1.0 (2019-01-08)
        ------------------
        
        * First release on PyPI.
        * Implementation of the validation of an OAS 2.0 (aka swagger) file
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD 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.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: !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*
