globifai 0.1.0__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.
- globifai-0.1.0/PKG-INFO +33 -0
- globifai-0.1.0/README.md +17 -0
- globifai-0.1.0/pyproject.toml +23 -0
- globifai-0.1.0/setup.cfg +4 -0
- globifai-0.1.0/src/globifai/__init__.py +6 -0
- globifai-0.1.0/src/globifai.egg-info/PKG-INFO +33 -0
- globifai-0.1.0/src/globifai.egg-info/SOURCES.txt +7 -0
- globifai-0.1.0/src/globifai.egg-info/dependency_links.txt +1 -0
- globifai-0.1.0/src/globifai.egg-info/top_level.txt +1 -0
globifai-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: globifai
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: AI platform integrating memory, audit, routing, governance and agent orchestration tools.
|
|
5
|
+
Author-email: CrewGR <krugergustav@gmail.com>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://github.com/globifai
|
|
8
|
+
Keywords: ai,agent,spai,globifai,crewgr
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: License :: Other/Proprietary License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# GlobifAI
|
|
18
|
+
|
|
19
|
+
AI platform integrating memory, audit, routing, governance and agent orchestration tools.
|
|
20
|
+
|
|
21
|
+
Part of the [GlobifAI](https://github.com/globifai) product family by [CrewGR](https://github.com/CrewGR-Platform).
|
|
22
|
+
|
|
23
|
+
> This package is a namespace reservation. Full SDK coming soon.
|
|
24
|
+
|
|
25
|
+
## Installation
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install globifai
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## License
|
|
32
|
+
|
|
33
|
+
Proprietary — © 2026 CrewGR. All rights reserved.
|
globifai-0.1.0/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# GlobifAI
|
|
2
|
+
|
|
3
|
+
AI platform integrating memory, audit, routing, governance and agent orchestration tools.
|
|
4
|
+
|
|
5
|
+
Part of the [GlobifAI](https://github.com/globifai) product family by [CrewGR](https://github.com/CrewGR-Platform).
|
|
6
|
+
|
|
7
|
+
> This package is a namespace reservation. Full SDK coming soon.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install globifai
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## License
|
|
16
|
+
|
|
17
|
+
Proprietary — © 2026 CrewGR. All rights reserved.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "globifai"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "AI platform integrating memory, audit, routing, governance and agent orchestration tools."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "Proprietary"}
|
|
11
|
+
authors = [{name = "CrewGR", email = "krugergustav@gmail.com"}]
|
|
12
|
+
keywords = ["ai", "agent", "spai", "globifai", "crewgr"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"License :: Other/Proprietary License",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
]
|
|
20
|
+
requires-python = ">=3.9"
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://github.com/globifai"
|
globifai-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: globifai
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: AI platform integrating memory, audit, routing, governance and agent orchestration tools.
|
|
5
|
+
Author-email: CrewGR <krugergustav@gmail.com>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://github.com/globifai
|
|
8
|
+
Keywords: ai,agent,spai,globifai,crewgr
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: License :: Other/Proprietary License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# GlobifAI
|
|
18
|
+
|
|
19
|
+
AI platform integrating memory, audit, routing, governance and agent orchestration tools.
|
|
20
|
+
|
|
21
|
+
Part of the [GlobifAI](https://github.com/globifai) product family by [CrewGR](https://github.com/CrewGR-Platform).
|
|
22
|
+
|
|
23
|
+
> This package is a namespace reservation. Full SDK coming soon.
|
|
24
|
+
|
|
25
|
+
## Installation
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install globifai
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## License
|
|
32
|
+
|
|
33
|
+
Proprietary — © 2026 CrewGR. All rights reserved.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
globifai
|