openai-chatkit 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.
- openai_chatkit-0.0.1/PKG-INFO +14 -0
- openai_chatkit-0.0.1/README.md +4 -0
- openai_chatkit-0.0.1/openai_chatkit.egg-info/PKG-INFO +14 -0
- openai_chatkit-0.0.1/openai_chatkit.egg-info/SOURCES.txt +6 -0
- openai_chatkit-0.0.1/openai_chatkit.egg-info/dependency_links.txt +1 -0
- openai_chatkit-0.0.1/openai_chatkit.egg-info/top_level.txt +1 -0
- openai_chatkit-0.0.1/pyproject.toml +19 -0
- openai_chatkit-0.0.1/setup.cfg +4 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: openai-chatkit
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved package name for future release. Watch this space!
|
|
5
|
+
Author-email: Lukas Gross <lukas@openai.com>, Tyler Smith <tylersmith@openai.com>, David Weedon <weedon@openai.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/openai
|
|
8
|
+
Requires-Python: >=3.8
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# ChatKit
|
|
12
|
+
|
|
13
|
+
This is a placeholder release to reserve the package name.
|
|
14
|
+
Real functionality will be added in a future version.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: openai-chatkit
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved package name for future release. Watch this space!
|
|
5
|
+
Author-email: Lukas Gross <lukas@openai.com>, Tyler Smith <tylersmith@openai.com>, David Weedon <weedon@openai.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/openai
|
|
8
|
+
Requires-Python: >=3.8
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# ChatKit
|
|
12
|
+
|
|
13
|
+
This is a placeholder release to reserve the package name.
|
|
14
|
+
Real functionality will be added in a future version.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "openai-chatkit"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reserved package name for future release. Watch this space!"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Lukas Gross", email = "lukas@openai.com" },
|
|
14
|
+
{ name = "Tyler Smith", email = "tylersmith@openai.com" },
|
|
15
|
+
{ name = "David Weedon", email = "weedon@openai.com" },
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
"Homepage" = "https://github.com/openai"
|