vlcSim 0.3.3__tar.gz → 0.4.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {vlcSim-0.3.3 → vlcsim-0.4.0}/PKG-INFO +17 -6
- vlcsim-0.4.0/pyproject.toml +37 -0
- {vlcSim-0.3.3 → vlcsim-0.4.0}/vlcsim/__init__.py +2 -0
- vlcsim-0.4.0/vlcsim/controller.py +743 -0
- vlcsim-0.4.0/vlcsim/scene.py +1793 -0
- {vlcSim-0.3.3 → vlcsim-0.4.0}/vlcsim/simulator.py +287 -110
- vlcSim-0.3.3/setup.cfg +0 -4
- vlcSim-0.3.3/setup.py +0 -30
- vlcSim-0.3.3/test/test_receiver.py +0 -29
- vlcSim-0.3.3/test/test_scenario.py +0 -113
- vlcSim-0.3.3/test/test_vled.py +0 -29
- vlcSim-0.3.3/vlcSim.egg-info/PKG-INFO +0 -153
- vlcSim-0.3.3/vlcSim.egg-info/SOURCES.txt +0 -16
- vlcSim-0.3.3/vlcSim.egg-info/dependency_links.txt +0 -1
- vlcSim-0.3.3/vlcSim.egg-info/not-zip-safe +0 -1
- vlcSim-0.3.3/vlcSim.egg-info/requires.txt +0 -2
- vlcSim-0.3.3/vlcSim.egg-info/top_level.txt +0 -1
- vlcSim-0.3.3/vlcsim/controller.py +0 -537
- vlcSim-0.3.3/vlcsim/scene.py +0 -1102
- {vlcSim-0.3.3 → vlcsim-0.4.0}/LICENSE.md +0 -0
- {vlcSim-0.3.3 → vlcsim-0.4.0}/README.md +0 -0
|
@@ -1,16 +1,26 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: vlcSim
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: Python Package of Event-Oriented Simulation for visible light communication
|
|
5
|
-
|
|
5
|
+
License: MIT
|
|
6
|
+
License-File: LICENSE.md
|
|
7
|
+
Keywords: vlc,visible light communication,simulation,event-oriented
|
|
6
8
|
Author: Danilo Bórquez-Paredes
|
|
7
9
|
Author-email: danilo.borquez.p@uai.cl
|
|
8
|
-
|
|
9
|
-
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.9,<4.0
|
|
10
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
12
|
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
20
|
+
Requires-Dist: numpy (>=1.24.0,<2.0.0)
|
|
21
|
+
Project-URL: Homepage, https://gitlab.com/DaniloBorquez/simvlc/
|
|
22
|
+
Project-URL: Repository, https://gitlab.com/DaniloBorquez/simvlc/
|
|
12
23
|
Description-Content-Type: text/markdown
|
|
13
|
-
License-File: LICENSE.md
|
|
14
24
|
|
|
15
25
|
VLCSim is an Event-Oriented simulator package for Visible Light Communication.
|
|
16
26
|
|
|
@@ -151,3 +161,4 @@ if __name__ == "__main__":
|
|
|
151
161
|
# initialize and run
|
|
152
162
|
sim.init()
|
|
153
163
|
sim.run()
|
|
164
|
+
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
[tool.poetry]
|
|
2
|
+
name = "vlcSim"
|
|
3
|
+
version = "0.4.0" # Placeholder, will be replaced by dynamic versioning
|
|
4
|
+
description = "Python Package of Event-Oriented Simulation for visible light communication"
|
|
5
|
+
authors = ["Danilo Bórquez-Paredes <danilo.borquez.p@uai.cl>"]
|
|
6
|
+
license = "MIT"
|
|
7
|
+
readme = "README.md"
|
|
8
|
+
homepage = "https://gitlab.com/DaniloBorquez/simvlc/"
|
|
9
|
+
repository = "https://gitlab.com/DaniloBorquez/simvlc/"
|
|
10
|
+
keywords = ["vlc", "visible light communication", "simulation", "event-oriented"]
|
|
11
|
+
classifiers = [
|
|
12
|
+
"Programming Language :: Python :: 3",
|
|
13
|
+
"License :: OSI Approved :: MIT License",
|
|
14
|
+
"Operating System :: OS Independent",
|
|
15
|
+
]
|
|
16
|
+
packages = [{include = "vlcsim"}]
|
|
17
|
+
|
|
18
|
+
[tool.poetry.dependencies]
|
|
19
|
+
python = "^3.9"
|
|
20
|
+
numpy = "^1.24.0"
|
|
21
|
+
|
|
22
|
+
[tool.poetry.group.dev.dependencies]
|
|
23
|
+
pytest = "^7.4.0"
|
|
24
|
+
pytest-cov = "^4.1.0"
|
|
25
|
+
|
|
26
|
+
[tool.poetry-dynamic-versioning]
|
|
27
|
+
enable = false
|
|
28
|
+
vcs = "git"
|
|
29
|
+
style = "semver"
|
|
30
|
+
pattern = "^(?P<base>\\d+\\.\\d+\\.\\d+)(-?((?P<stage>[a-zA-Z]+)\\.?(?P<revision>\\d+)?))?"
|
|
31
|
+
|
|
32
|
+
[tool.poetry-dynamic-versioning.substitution]
|
|
33
|
+
files = ["vlcsim/__init__.py"]
|
|
34
|
+
|
|
35
|
+
[build-system]
|
|
36
|
+
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
|
|
37
|
+
build-backend = "poetry_dynamic_versioning.backend"
|