traigent 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.
- traigent-0.0.1/PKG-INFO +20 -0
- traigent-0.0.1/README.md +3 -0
- traigent-0.0.1/pyproject.toml +26 -0
- traigent-0.0.1/setup.cfg +4 -0
- traigent-0.0.1/traigent/__init__.py +2 -0
- traigent-0.0.1/traigent.egg-info/PKG-INFO +20 -0
- traigent-0.0.1/traigent.egg-info/SOURCES.txt +7 -0
- traigent-0.0.1/traigent.egg-info/dependency_links.txt +1 -0
- traigent-0.0.1/traigent.egg-info/top_level.txt +1 -0
traigent-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: traigent
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Traigent SDK - placeholder package, coming soon
|
|
5
|
+
Author-email: Traigent <Israel@traigent.ai>
|
|
6
|
+
Project-URL: Homepage, https://traigent.ai
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Requires-Python: >=3.8
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# Traigent
|
|
19
|
+
|
|
20
|
+
**This package is a placeholder.** The full SDK is coming soon.
|
traigent-0.0.1/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "traigent"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Traigent SDK - placeholder package, coming soon"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
authors = [
|
|
12
|
+
{ name = "Traigent", email = "Israel@traigent.ai" },
|
|
13
|
+
]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Programming Language :: Python :: 3.8",
|
|
19
|
+
"Programming Language :: Python :: 3.9",
|
|
20
|
+
"Programming Language :: Python :: 3.10",
|
|
21
|
+
"Programming Language :: Python :: 3.11",
|
|
22
|
+
"Programming Language :: Python :: 3.12",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[project.urls]
|
|
26
|
+
Homepage = "https://traigent.ai"
|
traigent-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: traigent
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Traigent SDK - placeholder package, coming soon
|
|
5
|
+
Author-email: Traigent <Israel@traigent.ai>
|
|
6
|
+
Project-URL: Homepage, https://traigent.ai
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Requires-Python: >=3.8
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# Traigent
|
|
19
|
+
|
|
20
|
+
**This package is a placeholder.** The full SDK is coming soon.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
traigent
|