opensignalbox 0.1.1__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.
Files changed (30) hide show
  1. opensignalbox-0.1.1/.gitignore +182 -0
  2. opensignalbox-0.1.1/.python-version +1 -0
  3. opensignalbox-0.1.1/CHANGELOG.md +10 -0
  4. opensignalbox-0.1.1/LICENSE +619 -0
  5. opensignalbox-0.1.1/PKG-INFO +30 -0
  6. opensignalbox-0.1.1/README.md +3 -0
  7. opensignalbox-0.1.1/pyproject.toml +43 -0
  8. opensignalbox-0.1.1/src/opensignalbox/framework/__init__.py +1 -0
  9. opensignalbox-0.1.1/src/opensignalbox/framework/assets/favicon.ico +0 -0
  10. opensignalbox-0.1.1/src/opensignalbox/framework/assets/osb.png +0 -0
  11. opensignalbox-0.1.1/src/opensignalbox/framework/assets/osb_dark.png +0 -0
  12. opensignalbox-0.1.1/src/opensignalbox/framework/assets/sig.svg +361 -0
  13. opensignalbox-0.1.1/src/opensignalbox/framework/assets/style.css +92 -0
  14. opensignalbox-0.1.1/src/opensignalbox/framework/box.py +205 -0
  15. opensignalbox-0.1.1/src/opensignalbox/framework/fastclock.py +76 -0
  16. opensignalbox-0.1.1/src/opensignalbox/framework/main.py +130 -0
  17. opensignalbox-0.1.1/src/opensignalbox/framework/models.py +49 -0
  18. opensignalbox-0.1.1/src/opensignalbox/framework/routes/__init__.py +7 -0
  19. opensignalbox-0.1.1/src/opensignalbox/framework/routes/box.py +146 -0
  20. opensignalbox-0.1.1/src/opensignalbox/framework/routes/fastclock.py +59 -0
  21. opensignalbox-0.1.1/src/opensignalbox/framework/routes/html.py +49 -0
  22. opensignalbox-0.1.1/src/opensignalbox/framework/routes/misc.py +52 -0
  23. opensignalbox-0.1.1/src/opensignalbox/framework/routes/module.py +28 -0
  24. opensignalbox-0.1.1/src/opensignalbox/framework/routes/modulestore.py +49 -0
  25. opensignalbox-0.1.1/src/opensignalbox/framework/routes/systick.py +61 -0
  26. opensignalbox-0.1.1/src/opensignalbox/framework/scripts/run.py +142 -0
  27. opensignalbox-0.1.1/src/opensignalbox/framework/systick.py +54 -0
  28. opensignalbox-0.1.1/src/opensignalbox/framework/templates/headless.html +16 -0
  29. opensignalbox-0.1.1/src/opensignalbox/framework/templates/loading.html +428 -0
  30. opensignalbox-0.1.1/src/opensignalbox/framework/version.py +1 -0
@@ -0,0 +1,182 @@
1
+ # Created by https://www.toptal.com/developers/gitignore/api/python
2
+ # Edit at https://www.toptal.com/developers/gitignore?templates=python
3
+
4
+ ### opensignalbox ###
5
+ tests/**/settings.toml
6
+ tests/workspace/boxes/*/resources/*
7
+ tests/workspace/boxes/Lowdham
8
+ opensignalbox/trainplanning/ltsv/icons
9
+
10
+ ### Python ###
11
+ # Byte-compiled / optimized / DLL files
12
+ __pycache__/
13
+ *.py[cod]
14
+ *$py.class
15
+
16
+ # C extensions
17
+ *.so
18
+
19
+ # Distribution / packaging
20
+ .Python
21
+ build/
22
+ develop-eggs/
23
+ #dist/
24
+ downloads/
25
+ eggs/
26
+ .eggs/
27
+ lib/
28
+ lib64/
29
+ parts/
30
+ sdist/
31
+ var/
32
+ wheels/
33
+ share/python-wheels/
34
+ *.egg-info/
35
+ .installed.cfg
36
+ *.egg
37
+ MANIFEST
38
+
39
+ # PyInstaller
40
+ # Usually these files are written by a python script from a template
41
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
42
+ *.manifest
43
+ *.spec
44
+
45
+ # Installer logs
46
+ pip-log.txt
47
+ pip-delete-this-directory.txt
48
+
49
+ # Unit test / coverage reports
50
+ htmlcov/
51
+ .tox/
52
+ .nox/
53
+ .coverage
54
+ .coverage.*
55
+ .cache
56
+ nosetests.xml
57
+ coverage.xml
58
+ *.cover
59
+ *.py,cover
60
+ .hypothesis/
61
+ .pytest_cache/
62
+ cover/
63
+
64
+ # Translations
65
+ *.mo
66
+ *.pot
67
+
68
+ # Django stuff:
69
+ *.log
70
+ local_settings.py
71
+ db.sqlite3
72
+ db.sqlite3-journal
73
+
74
+ # Flask stuff:
75
+ instance/
76
+ .webassets-cache
77
+
78
+ # Scrapy stuff:
79
+ .scrapy
80
+
81
+ # Sphinx documentation
82
+ docs/_build/
83
+
84
+ # PyBuilder
85
+ .pybuilder/
86
+ target/
87
+
88
+ # Jupyter Notebook
89
+ .ipynb_checkpoints
90
+
91
+ # IPython
92
+ profile_default/
93
+ ipython_config.py
94
+
95
+ # pyenv
96
+ # For a library or package, you might want to ignore these files since the code is
97
+ # intended to run in multiple environments; otherwise, check them in:
98
+ # .python-version
99
+
100
+ # pipenv
101
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
102
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
103
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
104
+ # install all needed dependencies.
105
+ #Pipfile.lock
106
+
107
+ # poetry
108
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
109
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
110
+ # commonly ignored for libraries.
111
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
112
+ #poetry.lock
113
+
114
+ # pdm
115
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
116
+ #pdm.lock
117
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
118
+ # in version control.
119
+ # https://pdm.fming.dev/#use-with-ide
120
+ .pdm.toml
121
+
122
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
123
+ __pypackages__/
124
+
125
+ # Celery stuff
126
+ celerybeat-schedule
127
+ celerybeat.pid
128
+
129
+ # SageMath parsed files
130
+ *.sage.py
131
+
132
+ # Environments
133
+ .env
134
+ .venv
135
+ env/
136
+ venv/
137
+ ENV/
138
+ env.bak/
139
+ venv.bak/
140
+
141
+ # Spyder project settings
142
+ .spyderproject
143
+ .spyproject
144
+
145
+ # Rope project settings
146
+ .ropeproject
147
+
148
+ # mkdocs documentation
149
+ /site
150
+
151
+ # mypy
152
+ .mypy_cache/
153
+ .dmypy.json
154
+ dmypy.json
155
+
156
+ # Pyre type checker
157
+ .pyre/
158
+
159
+ # pytype static type analyzer
160
+ .pytype/
161
+
162
+ # Cython debug symbols
163
+ cython_debug/
164
+
165
+ # PyCharm
166
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
167
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
168
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
169
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
170
+ #.idea/
171
+
172
+ ### Python Patch ###
173
+ # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
174
+ poetry.toml
175
+
176
+ # ruff
177
+ .ruff_cache/
178
+
179
+ # LSP config files
180
+ pyrightconfig.json
181
+
182
+ # End of https://www.toptal.com/developers/gitignore/api/python
@@ -0,0 +1 @@
1
+ 3.12.2
@@ -0,0 +1,10 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ - WIP