refaie 0.0.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.
- refaie-0.0.1/PKG-INFO +41 -0
- refaie-0.0.1/README.md +27 -0
- refaie-0.0.1/pyproject.toml +23 -0
- refaie-0.0.1/refaie/__init__.py +0 -0
- refaie-0.0.1/refaie.egg-info/PKG-INFO +41 -0
- refaie-0.0.1/refaie.egg-info/SOURCES.txt +7 -0
- refaie-0.0.1/refaie.egg-info/dependency_links.txt +1 -0
- refaie-0.0.1/refaie.egg-info/top_level.txt +1 -0
- refaie-0.0.1/setup.cfg +4 -0
refaie-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: refaie
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official core gateway and reserved namespace for the Refaie Academy Platform ecosystem.
|
|
5
|
+
Author: Dr. Mohamed Refaei
|
|
6
|
+
Project-URL: Telegram Support, https://t.me/Refaei_1
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Intended Audience :: Education
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.7
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# REFAIE
|
|
16
|
+
|
|
17
|
+
The official core infrastructure and gateway for the Refaie Academy Platform.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## ⚠️ Reserved Namespace Notice
|
|
22
|
+
|
|
23
|
+
This package name (`refaie`) is officially registered and strictly reserved for an upcoming academic and media-processing ecosystem. It serves as the primary gateway for secure backend integrations, client applications, and automated CLI tools.
|
|
24
|
+
|
|
25
|
+
Any unauthorized attempts to publish under this namespace or distribute packages using this identifier will be monitored.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## ✉️ Contact & Inquiries
|
|
30
|
+
|
|
31
|
+
If you have any questions, integration requests, or need to contact the project administrator, please reach out directly via Telegram:
|
|
32
|
+
|
|
33
|
+
* **Lead Developer & Owner:** Dr. Mohamed Refaei
|
|
34
|
+
* **Telegram Username:** [@Refaei_1](https://t.me/Refaei_1)
|
|
35
|
+
* **Direct Link:** [t.me/Refaei_1](https://t.me/Refaei_1)
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
<p align="center">
|
|
40
|
+
<sub>© 2026 Refaie Academy. All rights reserved. Proprietary Infrastructure.</sub>
|
|
41
|
+
</p>
|
refaie-0.0.1/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# REFAIE
|
|
2
|
+
|
|
3
|
+
The official core infrastructure and gateway for the Refaie Academy Platform.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## ⚠️ Reserved Namespace Notice
|
|
8
|
+
|
|
9
|
+
This package name (`refaie`) is officially registered and strictly reserved for an upcoming academic and media-processing ecosystem. It serves as the primary gateway for secure backend integrations, client applications, and automated CLI tools.
|
|
10
|
+
|
|
11
|
+
Any unauthorized attempts to publish under this namespace or distribute packages using this identifier will be monitored.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## ✉️ Contact & Inquiries
|
|
16
|
+
|
|
17
|
+
If you have any questions, integration requests, or need to contact the project administrator, please reach out directly via Telegram:
|
|
18
|
+
|
|
19
|
+
* **Lead Developer & Owner:** Dr. Mohamed Refaei
|
|
20
|
+
* **Telegram Username:** [@Refaei_1](https://t.me/Refaei_1)
|
|
21
|
+
* **Direct Link:** [t.me/Refaei_1](https://t.me/Refaei_1)
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
<p align="center">
|
|
26
|
+
<sub>© 2026 Refaie Academy. All rights reserved. Proprietary Infrastructure.</sub>
|
|
27
|
+
</p>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "refaie"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="Dr. Mohamed Refaei" },
|
|
10
|
+
]
|
|
11
|
+
description = "Official core gateway and reserved namespace for the Refaie Academy Platform ecosystem."
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.7"
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Education",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"License :: OSI Approved :: MIT License",
|
|
19
|
+
"Operating System :: OS Independent",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
"Telegram Support" = "https://t.me/Refaei_1"
|
|
File without changes
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: refaie
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official core gateway and reserved namespace for the Refaie Academy Platform ecosystem.
|
|
5
|
+
Author: Dr. Mohamed Refaei
|
|
6
|
+
Project-URL: Telegram Support, https://t.me/Refaei_1
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Intended Audience :: Education
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.7
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# REFAIE
|
|
16
|
+
|
|
17
|
+
The official core infrastructure and gateway for the Refaie Academy Platform.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## ⚠️ Reserved Namespace Notice
|
|
22
|
+
|
|
23
|
+
This package name (`refaie`) is officially registered and strictly reserved for an upcoming academic and media-processing ecosystem. It serves as the primary gateway for secure backend integrations, client applications, and automated CLI tools.
|
|
24
|
+
|
|
25
|
+
Any unauthorized attempts to publish under this namespace or distribute packages using this identifier will be monitored.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## ✉️ Contact & Inquiries
|
|
30
|
+
|
|
31
|
+
If you have any questions, integration requests, or need to contact the project administrator, please reach out directly via Telegram:
|
|
32
|
+
|
|
33
|
+
* **Lead Developer & Owner:** Dr. Mohamed Refaei
|
|
34
|
+
* **Telegram Username:** [@Refaei_1](https://t.me/Refaei_1)
|
|
35
|
+
* **Direct Link:** [t.me/Refaei_1](https://t.me/Refaei_1)
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
<p align="center">
|
|
40
|
+
<sub>© 2026 Refaie Academy. All rights reserved. Proprietary Infrastructure.</sub>
|
|
41
|
+
</p>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
refaie
|
refaie-0.0.1/setup.cfg
ADDED