Metadata-Version: 1.1
Name: OpenCobolIDE
Version: 3.0.0
Summary: A simple cobol IDE
Home-page: https://github.com/OpenCobolIDE/OpenCobolIDE
Author: Colin Duquesnoy
Author-email: colin.duquesnoy@gmail.com
License: GPL v3
Description: OpenCobolIDE
        ------------
        .. image:: https://travis-ci.org/OpenCobolIDE/OpenCobolIDE.png?branch=develop
            :target: https://travis-ci.org/OpenCobolIDE/OpenCobolIDE
            :alt: Travis-CI build status
            
        .. image:: https://pypip.in/d/OpenCobolIDE/badge.png
            :target: https://crate.io/packages/OpenCobolIDE/
            :alt: Number of PyPI downloads
        
        .. image:: https://pypip.in/v/OpenCobolIDE/badge.png
            :target: https://crate.io/packages/OpenCobolIDE/
            :alt: Latest PyPI version
        
        
        OpenCobolIDE is a simple and lightweight cobol IDE based on the OpenCobol
        compiler.
        
        
        The software is written in Python using `PyQt5`_ and `pyQode`_
        
        Features:
        ---------
        
        - syntax highlighting
        - code completion
        - code folding -> temporarely removed for performance reasons
        - navigable tree view of division, sections, paragraphs etc.
        - calculates the offsets of selected record definitions
        - compile as program (.exe) or as subprogram (.so/.dll)
        - run the program from the editor or from a configurable external terminal
        - also open other text files
        - dark color schemes and theme
        - cross platform: work on **GNU/Linux**, **Windows** and **Mac OSX**
        
        
        License
        -------
        
        OpenCobolIDE is released under the **GPL** version 3
        
        
        Requirements
        ------------
        
        The project depends on the following packages:
        
        - `Python3`_
        - `setuptools`_
        - `PyQt4`_ or `PyQt5`_
        - `OpenCobol`_
        - `pyqode.core`_
        - `Pygments`_ **>= 1.6**
        - `chardet`_
        - `qdarkstyle`_
        
        
        Installation
        ------------
        
        GNU/Linux
        #########
        
        Install pyqt5, open-cobol and pip using your package manager, then run the following commands::
        
            sudo pip3 install OpenCobolIDE
        
        
        If you are on Archlinux, you can install OpenCobolIDE and all its dependencies from the AUR: https://aur.archlinux.org/packages/open-cobol-ide/
        
        
        Windows
        #######
        
        There is a windows installer available here: https://launchpad.net/cobcide/+download
        
        Mac OSX
        #######
        
        There is a dmg image available here: https://launchpad.net/cobcide/+download
        
        The only thing you have to do is:
        
        - to install OpenCobol compiler, e.g. using homebrew::
        
            brew install open-cobol
        
        - run the OpenCobolIDE app
        
        If you installed the compiler in a non-standard path and it is not recognized, you
        can specify and the path to the compiler in the preferences dialog under the ``Build & Run`` section
        (make sure to only specify the directory where the compiler can be found, not the full path).
        
        
        
        Resources
        ---------
        
        -  `Downloads`_
        -  `Source repository`_
        -  `Issue tracker`_
        -  `Documentation`_
        
        
        Disclaimer
        ----------
        
        I am by no way a cobol expert, I just had to work on a cobol project at school
        with an awful IDE (NetExpress on a Windows Xp virtual machine). As I was writing
        pyqode, I thought it would be nice to use it to make a simple cobol editor for
        GNU/Linux.
        
        I've only learnt COBOL 74 and the IDE has been designed with this standard in
        mind. I don't plan to work with cobol at the moment nor to learn
        a new standard but if you found a missing feature, feel free to open a feature
        request. I'm always looking forward to make OpenCobolIDE better for the experts.
        
        Your advice will be very appreciated!
        
        
        Screenshots
        -----------
        
        * Home page:
        
        .. image:: doc/source/_static/Home.png
            :align: center
        
        * Editor:
        
        .. image:: doc/source/_static/CompilerOutput.png
            :align: center
        
        
        * Offset calculator
        
        .. image:: doc/source/_static/PicOffsets.png
            :align: center
        
        
        * Dark style support
        
        .. image:: doc/source/_static/Dark.png
            :align: center
        
        
        .. _qdarkstyle: https://github.com/ColinDuquesnoy/QDarkStyleSheet
        .. _pyQode: https://github.com/pyQode/
        .. _PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/download
        .. _Downloads: https://github.com/OpenCobolIDE/OpenCobolIDE/releases
        .. _Source repository: https://github.com/OpenCobolIDE/OpenCobolIDE/
        .. _Issue tracker: https://github.com/OpenCobolIDE/OpenCobolIDE/issues?state=open
        .. _`Documentation`: http://opencobolide.readthedocs.org/en/latest/
        .. _chardet: https://pypi.python.org/pypi/chardet
        .. _Pygments: http://pygments.org/
        .. _pyqode.core: https://github.com/pyQode/pyqode.core/
        .. _OpenCobol: http://opencobol.org/
        .. _setuptools: https://pypi.python.org/pypi/setuptools
        .. _Python3: http://python.org/
        .. _PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/download
        
Keywords: Cobol; OpenCobol; IDE
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: X11 Applications :: Qt
Classifier: Environment :: Win32 (MS Windows)
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
