salabim 24.0.1__tar.gz → 24.0.3__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. salabim-24.0.3/PKG-INFO +64 -0
  2. salabim-24.0.3/README.md +51 -0
  3. salabim-24.0.3/pyproject.toml +30 -0
  4. {salabim-24.0.1 → salabim-24.0.3}/salabim/salabim.py +27101 -27073
  5. salabim-24.0.3/salabim.egg-info/PKG-INFO +64 -0
  6. salabim-24.0.3/salabim.egg-info/SOURCES.txt +22 -0
  7. salabim-24.0.3/setup.cfg +4 -0
  8. salabim-24.0.3/tests/test_cap_now.py +28 -0
  9. salabim-24.0.3/tests/test_componentgenerator.py +198 -0
  10. salabim-24.0.3/tests/test_datetime.py +108 -0
  11. salabim-24.0.3/tests/test_distributions.py +202 -0
  12. salabim-24.0.3/tests/test_misc.py +53 -0
  13. salabim-24.0.3/tests/test_monitor.py +644 -0
  14. salabim-24.0.3/tests/test_process.py +26 -0
  15. salabim-24.0.3/tests/test_queue.py +184 -0
  16. salabim-24.0.3/tests/test_salabim.py +5 -0
  17. salabim-24.0.3/tests/test_state.py +115 -0
  18. salabim-24.0.3/tests/test_store.py +17 -0
  19. salabim-24.0.3/tests/test_timeunit.py +122 -0
  20. salabim-24.0.1/MANIFEST.in +0 -5
  21. salabim-24.0.1/PKG-INFO +0 -65
  22. salabim-24.0.1/salabim/README.md +0 -38
  23. salabim-24.0.1/salabim/__init__.py +0 -2
  24. salabim-24.0.1/salabim/changelog.txt +0 -7113
  25. salabim-24.0.1/salabim.egg-info/PKG-INFO +0 -65
  26. salabim-24.0.1/salabim.egg-info/SOURCES.txt +0 -15
  27. salabim-24.0.1/setup.cfg +0 -7
  28. salabim-24.0.1/setup.py +0 -75
  29. {salabim-24.0.1 → salabim-24.0.3}/salabim/DejaVuSansMono.ttf +0 -0
  30. {salabim-24.0.1 → salabim-24.0.3}/salabim/calibri.ttf +0 -0
  31. {salabim-24.0.1 → salabim-24.0.3}/salabim/mplus-1m-regular.ttf +0 -0
  32. {salabim-24.0.1 → salabim-24.0.3}/salabim.egg-info/dependency_links.txt +0 -0
  33. {salabim-24.0.1 → salabim-24.0.3}/salabim.egg-info/top_level.txt +0 -0
@@ -0,0 +1,64 @@
1
+ Metadata-Version: 2.1
2
+ Name: salabim
3
+ Version: 24.0.3
4
+ Summary: salabim - discrete event simulation in Python
5
+ Author-email: Ruud van der Ham <rt.van.der.ham@gmail.com>
6
+ Project-URL: Homepage, https://github.com/salabim/salabim
7
+ Project-URL: Repository, https://github.com/salabim/salabim
8
+ Classifier: Development Status :: 5 - Production/Stable
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3 :: Only
11
+ Requires-Python: >=3.7
12
+ Description-Content-Type: text/markdown
13
+
14
+ <img src="https://www.salabim.org/salabim_logo_payoff.png" />
15
+
16
+ </br>
17
+
18
+ Salabim is a Python library for object-oriented discrete event simulation (DES) and animation.
19
+
20
+ ## Introduction
21
+
22
+ Discrete event simulation (DES) finds applications in various logistical domains including production facilities, warehousing, airports, hospitals, mining, materials handling, steel mills, and computer network analysis.
23
+
24
+ Salabim follows a well-proven and intuitive process description method similar to Tomas and Must.</br>The package provides:
25
+
26
+ - Components
27
+ - Queues
28
+ - Resources
29
+ - Stores
30
+ - States
31
+ - Monitors for data collection and presentation
32
+ - 2D and 3D animation (including video production)
33
+ - Tracing facilities
34
+ - Advanced statistical sampling
35
+
36
+ In contrast to some other Python DES packages, salabim does not require the use of yield statements for process control, making it more straightforward to use. Salabim has minimal requirements, especially when animation is disabled.
37
+
38
+ ## Features and documentation
39
+
40
+ - Cross-platform support: salabim runs on Windows, macOS, Linux, iOS/iPadOS (Pythonista), and can even be used with "Python In Excel".
41
+ - Comprehensive documentation: Visit [www.salabim.org/manual](www.salabim.org/manual) for detailed documentation.
42
+
43
+ ## Contributing and Reporting Issues
44
+
45
+ Contributions to salabim are highly appreciated! You can contribute by issuing a pull request or submitting an issue on [GitHub](https://github.com/salabim/salabim). Alternatively, you can use the [salabim Google user group](https://groups.google.com/g/salabim) for discussions and reporting issues.
46
+
47
+ ## License
48
+
49
+ Salabim is licensed under the MIT License. For details, please refer to the [LICENSE](LICENSE) file.
50
+
51
+ ## Support
52
+
53
+ Ruud van der Ham is available and willing to help users with issues related to the package and modeling in general. He also provides services such as code and model reviews, consultancy, and training.
54
+
55
+ ## Getting Started
56
+
57
+ To start using salabim, visit [www.salabim.org](www.salabim.org) for installation instructions and further details.
58
+
59
+ ## Badges
60
+
61
+ ![PyPI](https://img.shields.io/pypi/v/salabim) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/salabim) ![PyPI - Implementation](https://img.shields.io/pypi/implementation/salabim)
62
+
63
+ ![PyPI - License](https://img.shields.io/pypi/l/salabim) ![Black](https://img.shields.io/badge/code%20style-black-000000.svg)
64
+ ![GitHub last commit](https://img.shields.io/github/last-commit/salabim/salabim)
@@ -0,0 +1,51 @@
1
+ <img src="https://www.salabim.org/salabim_logo_payoff.png" />
2
+
3
+ </br>
4
+
5
+ Salabim is a Python library for object-oriented discrete event simulation (DES) and animation.
6
+
7
+ ## Introduction
8
+
9
+ Discrete event simulation (DES) finds applications in various logistical domains including production facilities, warehousing, airports, hospitals, mining, materials handling, steel mills, and computer network analysis.
10
+
11
+ Salabim follows a well-proven and intuitive process description method similar to Tomas and Must.</br>The package provides:
12
+
13
+ - Components
14
+ - Queues
15
+ - Resources
16
+ - Stores
17
+ - States
18
+ - Monitors for data collection and presentation
19
+ - 2D and 3D animation (including video production)
20
+ - Tracing facilities
21
+ - Advanced statistical sampling
22
+
23
+ In contrast to some other Python DES packages, salabim does not require the use of yield statements for process control, making it more straightforward to use. Salabim has minimal requirements, especially when animation is disabled.
24
+
25
+ ## Features and documentation
26
+
27
+ - Cross-platform support: salabim runs on Windows, macOS, Linux, iOS/iPadOS (Pythonista), and can even be used with "Python In Excel".
28
+ - Comprehensive documentation: Visit [www.salabim.org/manual](www.salabim.org/manual) for detailed documentation.
29
+
30
+ ## Contributing and Reporting Issues
31
+
32
+ Contributions to salabim are highly appreciated! You can contribute by issuing a pull request or submitting an issue on [GitHub](https://github.com/salabim/salabim). Alternatively, you can use the [salabim Google user group](https://groups.google.com/g/salabim) for discussions and reporting issues.
33
+
34
+ ## License
35
+
36
+ Salabim is licensed under the MIT License. For details, please refer to the [LICENSE](LICENSE) file.
37
+
38
+ ## Support
39
+
40
+ Ruud van der Ham is available and willing to help users with issues related to the package and modeling in general. He also provides services such as code and model reviews, consultancy, and training.
41
+
42
+ ## Getting Started
43
+
44
+ To start using salabim, visit [www.salabim.org](www.salabim.org) for installation instructions and further details.
45
+
46
+ ## Badges
47
+
48
+ ![PyPI](https://img.shields.io/pypi/v/salabim) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/salabim) ![PyPI - Implementation](https://img.shields.io/pypi/implementation/salabim)
49
+
50
+ ![PyPI - License](https://img.shields.io/pypi/l/salabim) ![Black](https://img.shields.io/badge/code%20style-black-000000.svg)
51
+ ![GitHub last commit](https://img.shields.io/github/last-commit/salabim/salabim)
@@ -0,0 +1,30 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "salabim"
7
+ authors = [
8
+ {name = "Ruud van der Ham", email = "rt.van.der.ham@gmail.com"}
9
+ ]
10
+ description = "salabim - discrete event simulation in Python"
11
+ version = "24.0.3"
12
+ readme = "README.md"
13
+ requires-python = ">=3.7"
14
+ dependencies = [
15
+ ]
16
+ classifiers = [
17
+ "Development Status :: 5 - Production/Stable",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Programming Language :: Python :: 3 :: Only"
20
+ ]
21
+ [project.urls]
22
+ Homepage = "https://github.com/salabim/salabim"
23
+ Repository = "https://github.com/salabim/salabim"
24
+
25
+
26
+ [tool.setuptools]
27
+ packages = ["salabim"]
28
+
29
+ [tool.setuptools.package-data]
30
+ "*" = ["*.ttf"]