regorator 0.1__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.
regorator/__init__.py ADDED
@@ -0,0 +1,2 @@
1
+ from .core.main import *
2
+ from . import version
regorator/version.py ADDED
@@ -0,0 +1,6 @@
1
+ version = "0.1"
2
+ __version__ = version
3
+ full_version = version
4
+
5
+ release = 'dev' not in version and '+' not in version
6
+ short_version = version.split("+")[0]
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.1
2
+ Name: regorator
3
+ Version: 0.1
4
+ Summary: A Python Registry and Decorator System
5
+ Author-email: Pedro Henrique Coimbra <pedro-henrique.herig-coimbra@inrae.fr>
6
+ License: EUPL-1.2
7
+ Project-URL: Homepage, https://github.com/pedrohenriquecoimbra/regorator
8
+ Keywords: register,registry,decorator
9
+ Classifier: License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Environment :: Other Environment
12
+ Classifier: Framework :: Jupyter
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Programming Language :: Python
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Topic :: Other/Nonlisted Topic
23
+
@@ -0,0 +1,6 @@
1
+ regorator/__init__.py,sha256=3ynENL7joMcXhqEKFXoU17R0vvJLDvZyu5baG8mj5Sc,50
2
+ regorator/version.py,sha256=POseRB3SzK83fWHtlQZmTDUVs82krdZiP-8m8ubhaeE,160
3
+ regorator-0.1.dist-info/METADATA,sha256=-iRIrCq_gD6zxqbYQFOwM3cl4zHhQ5p6DR5lr4I4vV0,1022
4
+ regorator-0.1.dist-info/WHEEL,sha256=WnJ8fYhv8N4SYVK2lLYNI6N0kVATA7b0piVUNvqIIJE,91
5
+ regorator-0.1.dist-info/top_level.txt,sha256=srZ8vy-ArghxY-MAErU3JmFVpXRf9r7hoBSxeZRsnBY,10
6
+ regorator-0.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.3.3)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ regorator