Metadata-Version: 1.2
Name: pycolt
Version: 0.3.0
Summary: Command Line Questions for Python
Home-page: https://github.com/mfsjmenger/colt
Author: Maximilian F.S.J. Menger
Author-email: m.f.s.j.menger@rug.nl
License: Apache License v2.0
Description: =======================
        COLT: COmmand Line Tool
        =======================
        
        Simple, extensible tool to create out of the box input files and commandline
        interfaces for Python, that are type validated.
        For the input file the `ini` file-format is used around Python's configparser_.
        
        
        * Free software: Apache License 2.0
        
        
        Features
        --------
        
        1. Build simple commandline interfaces using the FromCommandline-decorator
        
        .. code:: python
        
           # examples/commandline_xrange.py
           from colt import from_commandline
        
        
           @from_commandline("""
           # start of the range
           xstart = :: int :: >0
           # end of the range
           xstop = :: int :: >1
           # step size
           step = 1 :: int 
           """)
           def x_range(xstart, xstop, step):
              for i in range(xstart, xstop, step):
                 print(i)
        
           if __name__ == '__main__':
              x_range()
        
        .. code:: python
        
           usage: commandline_xrange.py [-h] [-step step] xstart xstop
        
           positional arguments:
              xstart      int, Range(>0)
                          start of the range
              xstop       int, Range(>1)
                          end of the range
        
           optional arguments:
              -h, --help  show this help message and exit
              -step step  int,
                          step size
        
        
        Credits
        -------
        
        This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
        .. _configparser: https://docs.python.org/3/library/configparser.html
        
        
        =======
        History
        =======
        
        0.1.0 (2020-8-1)
        ------------------
        
        * First release on PyPI.
        
        
        
Keywords: pycolt
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
