pyrception 0.2.4__py3-none-any.whl

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.
pyrception/__init__.py ADDED
@@ -0,0 +1,15 @@
1
+ from pyrception.utils.types import InputType
2
+ from pyrception.utils.types import RFArrangement
3
+ from pyrception.utils.types import KernelFilter
4
+ from pyrception.utils.types import KernelShape
5
+ from pyrception.utils.types import Dim
6
+ from pyrception.utils.types import Dims
7
+ from pyrception.config.settings import conf
8
+ from pyrception.config.settings import Conf
9
+ from pyrception.config.settings import logger
10
+ from pyrception.utils.functions import timestamp
11
+ # from pyrception.utils.functions import plot
12
+ # from pyrception.utils.functions import animate
13
+ from pyrception.utils.functions import cartesian_prod
14
+ from pyrception.utils.functions import load_image
15
+ from pyrception.utils.functions import load_video
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2022-2024 Alexander Hadjiivanov
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
@@ -0,0 +1,38 @@
1
+ Metadata-Version: 2.2
2
+ Name: pyrception
3
+ Version: 0.2.4
4
+ Author: Alexander Hadjiivanov
5
+ Requires-Python: >=3.11
6
+ License-File: LICENCE.md
7
+ Requires-Dist: av
8
+ Requires-Dist: black
9
+ Requires-Dist: h5py
10
+ Requires-Dist: imageio[ffmpeg]
11
+ Requires-Dist: ipykernel
12
+ Requires-Dist: ipywidgets
13
+ Requires-Dist: loguru
14
+ Requires-Dist: matplotlib
15
+ Requires-Dist: numpy
16
+ Requires-Dist: opencv-python
17
+ Requires-Dist: plotly[express]
18
+ Requires-Dist: pydantic-settings
19
+ Requires-Dist: rich
20
+ Requires-Dist: ruff
21
+ Requires-Dist: scikit-image
22
+ Requires-Dist: scipy
23
+ Requires-Dist: tqdm
24
+ Provides-Extra: gui
25
+ Requires-Dist: pyqtgraph; extra == "gui"
26
+ Requires-Dist: PySide6; extra == "gui"
27
+ Provides-Extra: cli
28
+ Requires-Dist: cloup; extra == "cli"
29
+ Provides-Extra: events
30
+ Requires-Dist: tonic; extra == "events"
31
+ Provides-Extra: dev
32
+ Requires-Dist: py-spy; extra == "dev"
33
+ Provides-Extra: docs
34
+ Requires-Dist: mike; extra == "docs"
35
+ Requires-Dist: mkdocs-jupyter; extra == "docs"
36
+ Requires-Dist: mkdocs-material; extra == "docs"
37
+ Requires-Dist: mkdocs; extra == "docs"
38
+ Requires-Dist: mkdocstrings[python]; extra == "docs"
@@ -0,0 +1,7 @@
1
+ pyrception/__init__.py,sha256=yuzv-s7yWdKB90PRjirO0VbR4cnUJR4k3gIQDVn62ao,699
2
+ pyrception-0.2.4.dist-info/LICENCE.md,sha256=sMjXzdudBXMsZj3NRSrmovs-xqcYWRmpwUkZmuD8zhA,1070
3
+ pyrception-0.2.4.dist-info/METADATA,sha256=7tqh2OZCH1TT_rTvK_jsYNUlvJT09wU6s-VMS75Uddo,1068
4
+ pyrception-0.2.4.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
5
+ pyrception-0.2.4.dist-info/entry_points.txt,sha256=otFE1Ls0p9Hrb4dXjIRruuSLaUFjsKJDjf9R0tDUxmw,55
6
+ pyrception-0.2.4.dist-info/top_level.txt,sha256=0BQnVt58i3lOTA_eEir2Fz2KxDcruQoBmMAxgMWlfrU,11
7
+ pyrception-0.2.4.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.8.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ pyrception = pyrception.gui.main:run
@@ -0,0 +1 @@
1
+ pyrception