orionis 0.265.0__py3-none-any.whl → 0.267.0__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.
orionis/framework.py CHANGED
@@ -1,11 +1,11 @@
1
- #--------------------------------------------------------------------------
2
- # Framework Information
3
- #--------------------------------------------------------------------------
1
+ #---------------------------------------------------------------------------
2
+ # Framework Metadata
3
+ #---------------------------------------------------------------------------
4
4
  # Name of the framework
5
5
  NAME = "orionis"
6
6
 
7
7
  # Current version of the framework
8
- VERSION = "0.265.0"
8
+ VERSION = "0.267.0"
9
9
 
10
10
  # Full name of the author or maintainer of the project
11
11
  AUTHOR = "Raul Mauricio Uñate Castro"
@@ -16,9 +16,9 @@ AUTHOR_EMAIL = "raulmauriciounate@gmail.com"
16
16
  # Short description of the project or framework
17
17
  DESCRIPTION = "Orionis Framework – Elegant, Fast, and Powerful."
18
18
 
19
- #--------------------------------------------------------------------------
19
+ #---------------------------------------------------------------------------
20
20
  # Project URLs
21
- #--------------------------------------------------------------------------
21
+ #---------------------------------------------------------------------------
22
22
  # URL to the project's skeleton or template repository (for initial setup)
23
23
  SKELETON = "https://github.com/orionis-framework/skeleton"
24
24
 
@@ -31,8 +31,89 @@ DOCS = "https://orionis-framework.com/"
31
31
  # API URL to the project's JSON data
32
32
  API = "https://pypi.org/pypi/orionis/json"
33
33
 
34
- #--------------------------------------------------------------------------
34
+ #---------------------------------------------------------------------------
35
35
  # Python Requirements
36
- #--------------------------------------------------------------------------
36
+ #---------------------------------------------------------------------------
37
37
  # Minimum Python version required to run the project
38
- PYTHON_REQUIRES = ">=3.12"
38
+ PYTHON_REQUIRES = ">=3.12"
39
+
40
+ #---------------------------------------------------------------------------
41
+ # Project Classifiers
42
+ #---------------------------------------------------------------------------
43
+ # List of classifiers that provide metadata about the project for PyPI and other tools.
44
+ CLASSIFIERS = [
45
+ ("Development Status", "3 - Alpha"),
46
+ ("Environment", "Web Environment"),
47
+ ("Intended Audience", "Developers"),
48
+ ("License", "OSI Approved", "MIT License"),
49
+ ("Operating System", "OS Independent"),
50
+ ("Programming Language", "Python"),
51
+ ("Programming Language", "Python", "3"),
52
+ ("Programming Language", "Python", "3", "Only"),
53
+ ("Programming Language", "Python", "3.12"),
54
+ ("Programming Language", "Python", "3.13"),
55
+ ("Typing", "Typed"),
56
+ ("Topic", "Internet", "WWW/HTTP"),
57
+ ("Topic", "Internet", "WWW/HTTP", "Dynamic Content"),
58
+ ("Topic", "Internet", "WWW/HTTP", "WSGI"),
59
+ ("Topic", "Software Development", "Libraries", "Application Frameworks"),
60
+ ("Topic", "Software Development", "Libraries", "Python Modules"),
61
+ ]
62
+
63
+ def get_classifiers():
64
+ """
65
+ Returns the list of classifiers as strings, formatted for use in setup.py or pyproject.toml.
66
+
67
+ Each classifier tuple is joined with ' :: ' as required by Python packaging standards.
68
+
69
+ Returns:
70
+ list of str: Classifier strings, e.g., 'Programming Language :: Python :: 3.12'
71
+ """
72
+ return [
73
+ " :: ".join(classtuple)
74
+ for classtuple in CLASSIFIERS
75
+ ]
76
+
77
+ #---------------------------------------------------------------------------
78
+ # Project Keywords
79
+ #---------------------------------------------------------------------------
80
+ # List of keywords that describe the project and help with discoverability on package indexes.
81
+ KEYWORDS = [
82
+ "orionis",
83
+ "framework",
84
+ "python",
85
+ "orionis-framework",
86
+ "django",
87
+ "flask",
88
+ "fastapi",
89
+ "starlette",
90
+ "werkzeug",
91
+ "uvicorn"
92
+ ]
93
+
94
+ #---------------------------------------------------------------------------
95
+ # Project Dependencies
96
+ #---------------------------------------------------------------------------
97
+ # List of required packages and their minimum versions.
98
+ REQUIRES = [
99
+ ("apscheduler", "3.11.0"),
100
+ ("python-dotenv", "1.0.1"),
101
+ ("requests", "2.32.3"),
102
+ ("rich", "13.9.4"),
103
+ ("psutil", "7.0.0"),
104
+ ("cryptography", "44.0.3"),
105
+ ]
106
+
107
+ def get_requires():
108
+ """
109
+ Returns the list of required dependencies as strings, formatted for use in requirements files.
110
+
111
+ Each dependency tuple is joined with '>=' to specify the minimum required version.
112
+
113
+ Returns:
114
+ list of str: Requirement strings, e.g., 'requests>=2.32.3'
115
+ """
116
+ return [
117
+ ">=".join(requirement)
118
+ for requirement in REQUIRES
119
+ ]
@@ -0,0 +1,97 @@
1
+ Metadata-Version: 2.4
2
+ Name: orionis
3
+ Version: 0.267.0
4
+ Summary: Orionis Framework – Elegant, Fast, and Powerful.
5
+ Home-page: https://github.com/orionis-framework/framework
6
+ Author: Raul Mauricio Uñate Castro
7
+ Author-email: raulmauriciounate@gmail.com
8
+ Keywords: orionis,framework,python,orionis-framework,django,flask,fastapi,starlette,werkzeug,uvicorn
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Environment :: Web Environment
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3 :: Only
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Typing :: Typed
20
+ Classifier: Topic :: Internet :: WWW/HTTP
21
+ Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
22
+ Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
23
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
24
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
25
+ Requires-Python: >=3.12
26
+ Description-Content-Type: text/markdown
27
+ License-File: LICENCE
28
+ Requires-Dist: apscheduler>=3.11.0
29
+ Requires-Dist: python-dotenv>=1.0.1
30
+ Requires-Dist: requests>=2.32.3
31
+ Requires-Dist: rich>=13.9.4
32
+ Requires-Dist: psutil>=7.0.0
33
+ Requires-Dist: cryptography>=44.0.3
34
+ Dynamic: author
35
+ Dynamic: author-email
36
+ Dynamic: classifier
37
+ Dynamic: description
38
+ Dynamic: description-content-type
39
+ Dynamic: home-page
40
+ Dynamic: keywords
41
+ Dynamic: license-file
42
+ Dynamic: requires-dist
43
+ Dynamic: requires-python
44
+ Dynamic: summary
45
+
46
+ ## Welcome to Orionis Framework – An Opinionated Python Framework
47
+ ⚡ Orionis Framework – Elegant, Fast, and Powerful 🚀
48
+
49
+ <div style="display: flex; justify-content: center; margin-bottom: 20px;">
50
+ <img src="https://raw.githubusercontent.com/orionis-framework/framework/1.x/orionis/static/svg/logo.svg" alt="Orionis Framework" style="width: 300px; height: auto; margin-top: 30px; margin-bottom: 0px;"/>
51
+ </div>
52
+ <div style="display: flex; justify-content: center; margin-bottom: 20px;">
53
+ <img src="https://raw.githubusercontent.com/orionis-framework/framework/1.x/orionis/static/svg/text.svg" alt="Orionis Framework" style="width: 400px; height: auto; margin-top: 0px; margin-bottom: 30px;"/>
54
+ </div>
55
+
56
+ **Orionis** is a modern and expressive Python framework that transforms the way you build applications. Designed for developers who value clarity, productivity, and scalability, Orionis combines an elegant structure with powerful tools so you can focus on what truly matters: **creating amazing software**.
57
+
58
+ ## 🚀 Why Orionis?
59
+
60
+ * ✨ **Clear and expressive syntax**
61
+ Code that reads like natural language.
62
+
63
+ * ⚙️ **Clean and modular architecture**
64
+ Based on professional organization principles and best practices.
65
+
66
+ * ⏱️ **Agile and efficient development**
67
+ Reduce repetition and speed up your development cycles with built-in utilities.
68
+
69
+ * 🧪 **Ready for testing and production**
70
+ Designed with quality and stability in mind.
71
+
72
+ ## 🧱 Main Features
73
+
74
+ * 🧩 Intuitive routing system
75
+ * 🔧 Simple and powerful dependency injection
76
+ * 🧬 Flexible and easy-to-use ORM
77
+ * 🎯 Customizable service containers
78
+ * 🧰 Ready-to-use console commands
79
+ * 🛡️ Declarative validations
80
+ * 📦 Professional package structure
81
+ * ⚡ Support for asynchronous programming
82
+
83
+ ## 🧠 Philosophy
84
+
85
+ Orionis was created with a clear goal: to make Python development an elegant, modern, and productive experience. The framework promotes a clear separation of concerns, consistent conventions, and an **intuitive and seamless** development experience.
86
+
87
+ ## 📢 Community and Contribution
88
+
89
+ Want to be part of Orionis' evolution? Your contribution is welcome!
90
+
91
+ * Report bugs and request improvements
92
+ * Propose new features
93
+ * Create your own package and share it with the community
94
+
95
+ ## 🌠 Join the Python Revolution
96
+
97
+ Orionis is not just a framework—it's a new way to build. If you're ready to go beyond the traditional approach and embrace an ecosystem designed for today and tomorrow, **it's time to look to the sky... and start with Orionis.**
@@ -1,7 +1,7 @@
1
1
  orionis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  orionis/application.py,sha256=EK1ErClgoEwQ4sj-3RXZ9dx1WpJCFlpyYD1d2u9Rdyg,129
3
3
  orionis/clinstall.py,sha256=4gYWxf0fWYgJ4RKwARvnTPh06FL3GJ6SAZ7R2NzOICw,1342
4
- orionis/framework.py,sha256=nONwsGSnQyeNgHqMPzUvHPhQPO3zNy-ImsasPVH5Wcg,1458
4
+ orionis/framework.py,sha256=HTtPzwL3F-dwRJfkiLLiBCYC2CYOXhFk9V5ztLS9Q2o,4266
5
5
  orionis/unittesting.py,sha256=bGDkjHtI1G0DYui_atBJ3fXdDY9nD5h0gVEpiGu0dfM,1291
6
6
  orionis/installer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  orionis/installer/manager.py,sha256=Li4TVziRXWfum02xNG4JHwbnLk-u8xzHjdqKz-D894k,2755
@@ -334,7 +334,7 @@ orionis/luminate/test/suites/contracts/test_unit.py,sha256=wWIlSNX-C2Yi98UrU-B_1
334
334
  orionis/static/ascii/icon.ascii,sha256=IgrlVjcYxcCrr0cJuJkOnEz0aEdAQBTyLzO5ainKsWc,398
335
335
  orionis/static/ascii/info.ascii,sha256=HF_o2eXaiw5iqcOhHfnPByn5GJ_O2eBwSK3IpTfYOwY,457
336
336
  orionis/static/bg/galaxy.jpg,sha256=_FuPghOe9LBrIWv1eKZ9fiZR72sEz5obvXGDnD7MzTc,172244
337
- orionis-0.265.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
337
+ orionis-0.267.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
338
338
  tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
339
339
  tests/example/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
340
340
  tests/example/test_example.py,sha256=aWTi5PQJT7m-J_jsnZFBEgcEGlutm0lA9P0yS69qnqE,592
@@ -432,9 +432,9 @@ tests/support/inspection/fakes/fake_reflection_instance_with_abstract.py,sha256=
432
432
  tests/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
433
433
  tests/testing/test_testing_result.py,sha256=54QDn6_v9feIcDcA6LPXcvYhlt_X8JqLGTYWS9XjKXM,3029
434
434
  tests/testing/test_testing_unit.py,sha256=ddtpjNKfjCfpnoB8psjQitMtl6p0mY3mhzj3B64hvyE,5452
435
- orionis-0.265.0.dist-info/METADATA,sha256=1eV1Cz2S1jTR1U7nGtjHUQYw59J5LJ67lbqKyVtbLTk,2289
436
- orionis-0.265.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
437
- orionis-0.265.0.dist-info/entry_points.txt,sha256=KBt3L4oNLcGkcnia1q8nXzG5MWvuDBXE1QTHAuBpCUQ,51
438
- orionis-0.265.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
439
- orionis-0.265.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
440
- orionis-0.265.0.dist-info/RECORD,,
435
+ orionis-0.267.0.dist-info/METADATA,sha256=T_TZvZwjYKMtN-pK6lc4EHeddvedvgJpz5b6XjxFrI0,4338
436
+ orionis-0.267.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
437
+ orionis-0.267.0.dist-info/entry_points.txt,sha256=KBt3L4oNLcGkcnia1q8nXzG5MWvuDBXE1QTHAuBpCUQ,51
438
+ orionis-0.267.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
439
+ orionis-0.267.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
440
+ orionis-0.267.0.dist-info/RECORD,,
@@ -1,52 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: orionis
3
- Version: 0.265.0
4
- Summary: Orionis Framework – Elegant, Fast, and Powerful.
5
- Home-page: https://github.com/orionis-framework/framework
6
- Author: Raul Mauricio Uñate Castro
7
- Author-email: raulmauriciounate@gmail.com
8
- Keywords: orionis,framework,python,orionis-framework,django,flask,fastapi,starlettewerkzeuguvicorn
9
- Classifier: Development Status :: 3 - Alpha
10
- Classifier: Environment :: Web Environment
11
- Classifier: Intended Audience :: Developers
12
- Classifier: License :: OSI Approved :: MIT License
13
- Classifier: Operating System :: OS Independent
14
- Classifier: Programming Language :: Python
15
- Classifier: Programming Language :: Python :: 3
16
- Classifier: Programming Language :: Python :: 3 :: Only
17
- Classifier: Programming Language :: Python :: 3.12
18
- Classifier: Programming Language :: Python :: 3.13
19
- Classifier: Typing :: Typed
20
- Classifier: Topic :: Internet :: WWW/HTTP
21
- Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
22
- Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
23
- Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
24
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
25
- Requires-Python: >=3.12
26
- Description-Content-Type: text/markdown
27
- License-File: LICENCE
28
- Requires-Dist: apscheduler>=3.11.0
29
- Requires-Dist: python-dotenv>=1.0.1
30
- Requires-Dist: requests>=2.32.3
31
- Requires-Dist: rich>=13.9.4
32
- Requires-Dist: psutil>=7.0.0
33
- Requires-Dist: cryptography>=44.0.3
34
- Dynamic: author
35
- Dynamic: author-email
36
- Dynamic: classifier
37
- Dynamic: description
38
- Dynamic: description-content-type
39
- Dynamic: home-page
40
- Dynamic: keywords
41
- Dynamic: license-file
42
- Dynamic: requires-dist
43
- Dynamic: requires-python
44
- Dynamic: summary
45
-
46
- # Orionis Framework
47
-
48
- Orionis Framework is an opinionated Python framework designed for rapid, elegant, and powerful application development. Originally created to help teams transition from PHP to Python, Orionis provides familiar concepts like organized class structures, request lifecycles, and middleware support. It is suitable for modern challenges such as RPA, AI, Blockchain, Data Analytics, OCR, and Computer Vision.
49
-
50
- **Status:** Beta
51
-
52
- For more information, visit the [Orionis Framework repository](https://github.com/orionis-framework/framework).