File: PKG-INFO

package info (click to toggle)
python-simpy 2.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 17,300 kB
  • ctags: 2,568
  • sloc: python: 11,172; makefile: 145
file content (84 lines) | stat: -rw-r--r-- 3,809 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
Metadata-Version: 1.0
Name: SimPy
Version: 2.3.1
Summary: Event discrete, process based simulation for Python.
Home-page: http://simpy.sourceforge.net/
Author: Klaus Muller, Tony Vignaux, Ontje Lünsdorf, Stefan Scherfke
Author-email: vignaux at user.sourceforge.net; kgmuller at users.sourceforge.net; the_com at gmx.de; stefan at sofa-rockers.org
License: GNU LGPL
Download-URL: https://sourceforge.net/projects/simpy/files/
Description: SimPy
        =====
        
        SimPy is a process-based discrete-event simulation language based on standard
        Python and released under the GNU LGPL.
        
        It provides the modeller with components of a simulation model. These include
        processes for active components like customers, messages and vehicles as well
        as  resources for passive components that form limited capacity congestion
        points (like servers, checkout counters and tunnels). It also provides monitor
        variables to aid in gathering statistics. SimPy comes with extensive plotting
        capabilities.
        
        The distribution contains in-depth documentation, tutorials, and a large number
        of simulation models.
        
        Simulation model developers are encouraged to share their SimPy modeling
        techniques with the SimPy community. Please post a message to the SimPy-Users
        mailing list: http://lists.sourceforge.net/lists/listinfo/simpy-users
        
        Software developers are also encouraged to interface SimPy with other Python-
        accessible packages, such as GUI, database or mapping and to share these new
        capabilities with the community under the GNU LGPL.
        
        
        Installation
        ------------
        
        SimPy requires Python 2.6 or above (including Python 3).
        
        You can install SimPy easily via `PIP <http://pypi.python.org/pypi/pip>`_::
        
            $ pip install -U SimPy
        
        You can also download and install SimPy manually::
        
            $ cd where/you/put/simpy/
            $ python setup.py install
        
        To run SimPy’s test suite on your installation, execute::
        
            $ python -c "import SimPy; SimPy.test()"
        
        
        Getting started
        ---------------
        
        You can also run one or more of the programs under *docs/examples/* to see
        whether Python finds the SimPy module. If you get an error message like
        *ImportError: No module named SimPy*, check if the SimPy packages exists in
        your site-packages folder (like /Lib/site-packages).
        
        The tutorial and manuals are in the *docs/html* folder. Many users have
        commented that the Bank tutorials are valuable in getting users started on
        building their own simple models. Even a few lines of Python and SimPy can
        model significant real systems.
        
        For more help, contact the `SimPy-Users mailing list
        <mailto:simpy-users@lists.sourceforge.net>`_. SimPy users are pretty helpful.
        
        Enjoy simulation programming in SimPy!
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering