Metadata-Version: 2.0
Name: desmod
Version: 0.1.1
Summary: Discrete Event Simulation Modeling using SimPy
Home-page: https://desmod.readthedocs.io/
Author: Peter Grayson
Author-email: jpgrayson@gmail.com
License: MIT
Download-URL: https://github.com/SanDisk-Open-Source/desmod
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Scientific/Engineering
Requires-Dist: PyYAML
Requires-Dist: pyvcd
Requires-Dist: simpy
Requires-Dist: six

desmod
======

The desmod package provides a pythonic environment for composing
Discrete Event Simulation MODels. The excellent `SimPy`__ package
provides the discrete event simulation kernel. Desmod provides
additional capabilities useful for composing, monitoring, configuring,
and simulating arbitrarily complex models.

__ https://simpy.readthedocs.io/en/latest/

.. image:: https://readthedocs.org/projects/desmod/badge/?version=latest
    :target: https://desmod.readthedocs.io/en/latest/
    :alt: Documentation Status

.. image:: https://travis-ci.org/SanDisk-Open-Source/desmod.svg?branch=master
    :target: https://travis-ci.org/SanDisk-Open-Source/desmod
    :alt: Build Status


Installation
------------

Desmod is available on PyPI and can be installed with `pip`::

    pip install desmod


Resources
---------

* `Documentation on ReadTheDocs <http://desmod.readthedocs.io/>`_
* `Questions and development discussion Google Group
  <https://groups.google.com/forum/?hl=en#!forum/desmod>`_
* `Source code and issue tracker on GitHub
  <https://github.com/SanDisk-Open-Source/desmod>`_
* `Package on PyPI <https://pypi.python.org/pypi/desmod>`_
* `Continuous integration on TravisCI
  <https://travis-ci.org/SanDisk-Open-Source/desmod>`_


MIT License

Copyright (c) 2016 Western Digital Corporation

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.


