Metadata-Version: 1.0
Name: pidsim
Version: 1.0rc4
Summary: PID Controllers simulator
Home-page: http://pidsim.org/
Author: Rafael Goncalves Martins
Author-email: rafael@rafaelmartins.eng.br
License: GPL-2
Description: PIDSIM core package
        ===================
        
        This package implements a basic toolbox for the study of the Control
        Systems and the simulation of PID controllers, using Python.
        
        To use the examples, please initialize this package, using::
        
            >>> from pidsim.types import *
            >>> from pidsim.discretization import *
            >>> from pidsim.pid_simulation import *
            >>> from pidsim.error import *
        
        If you need some help with the use, or can help with the development,
        please contact the author via email or visit our project website:
        
        http://pidsim.org/
        
        All the help is welcome! :)
        
        
        Basic installation
        ~~~~~~~~~~~~~~~~~~
        
        To install, type::
        
            # python setup.py install
        
        or use pip::
        
            # pip install pidsim
        
        To build doc (you'll need sphinx), type::
        
            # make -C doc html
        
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Education
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Software Development :: Libraries :: Python Modules
