|Build Status| |Coverage Status| |PyPI| |Updates| |Python 3| |license|
argutil
=======
Wrapper for argparse that uses JSON config files to define command line
parsers
.. |Build Status| image:: https://travis-ci.org/cmccandless/argutil.svg?branch=master
:target: https://travis-ci.org/cmccandless/argutil
.. |Coverage Status| image:: https://coveralls.io/repos/github/cmccandless/argutil/badge.svg?branch=master
:target: https://coveralls.io/github/cmccandless/argutil?branch=master&service=github
.. |PyPI| image:: https://badge.fury.io/py/argutil.svg
:target: https://badge.fury.io/py/argutil
.. |Updates| image:: https://pyup.io/repos/github/cmccandless/argutil/shield.svg
:target: https://pyup.io/repos/github/cmccandless/argutil/
.. |Python 3| image:: https://pyup.io/repos/github/cmccandless/argutil/python-3-shield.svg
:target: https://pyup.io/repos/github/cmccandless/argutil/
.. |license| image:: https://img.shields.io/github/license/mashape/apistatus.svg
:target: https://opensource.org/licenses/mit-license.php
Changelog
=========
v1.1.9
------
- Add auto-deploy via Travis-CI
v1.1.6
------
- Fix bug with auto-detected script path
v1.1.5
------
- Add jsonschema validation for definitions file
- Add example for template usage
- Add tests for submodules and templates
v1.1.4
------
- Add callable() decorator to replace env parameter in get_parser
- bool added to primitive types
v1.1.3
------
- Fix load/save within ParserDefinition
- Fix get/set defaults for submodules
- Add default func for submodules
v1.1.1
------
- ParserDefinition.__init__() and get_parser() no longer require an explicit filepath
v1.1.0
------
- API: abstract parser definition functionality behind class ParserDefinition
- create CHANGELOG.rst
v1.0.7
------
- fix package metadata
MIT License
Copyright (c) 2018 Corey McCandless
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.