vlcSim 0.3.4__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.
@@ -1,16 +1,26 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: vlcSim
3
- Version: 0.3.4
3
+ Version: 0.4.0
4
4
  Summary: Python Package of Event-Oriented Simulation for visible light communication
5
- Home-page: https://gitlab.com/DaniloBorquez/simvlc/
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
- License: MIT
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"
@@ -6,6 +6,8 @@ VLCsim is composed by three modules:
6
6
  * Simulator: All the dynamics of the system is here
7
7
  """
8
8
 
9
+ __version__ = "0.4.0" # placeholder for poetry-dynamic-versioning
10
+
9
11
  from .scene import *
10
12
  from .controller import *
11
13
  from .simulator import *