rhemix-cs 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.
- rhemix_cs-0.0.1/PKG-INFO +21 -0
- rhemix_cs-0.0.1/README.md +5 -0
- rhemix_cs-0.0.1/pyproject.toml +25 -0
- rhemix_cs-0.0.1/rhemix_cs/__init__.py +3 -0
- rhemix_cs-0.0.1/rhemix_cs.egg-info/PKG-INFO +21 -0
- rhemix_cs-0.0.1/rhemix_cs.egg-info/SOURCES.txt +7 -0
- rhemix_cs-0.0.1/rhemix_cs.egg-info/dependency_links.txt +1 -0
- rhemix_cs-0.0.1/rhemix_cs.egg-info/top_level.txt +1 -0
- rhemix_cs-0.0.1/setup.cfg +4 -0
rhemix_cs-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: rhemix-cs
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder for the Rhemix CS package. Real release coming soon.
|
|
5
|
+
Author-email: Jake Vincent <jake@jwv.dev>
|
|
6
|
+
Project-URL: Homepage, https://rhemix.ai
|
|
7
|
+
Keywords: nlp,synthetic-data,conversational-ai,discourse
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Requires-Python: >=3.11
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# rhemix-cs
|
|
18
|
+
|
|
19
|
+
Placeholder package. The real release of Rhemix CS is coming soon.
|
|
20
|
+
|
|
21
|
+
See https://rhemix.ai for project information.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "rhemix-cs"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Placeholder for the Rhemix CS package. Real release coming soon."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
authors = [
|
|
12
|
+
{name = "Jake Vincent", email = "jake@jwv.dev"}
|
|
13
|
+
]
|
|
14
|
+
keywords = ["nlp", "synthetic-data", "conversational-ai", "discourse"]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.11",
|
|
20
|
+
"Programming Language :: Python :: 3.12",
|
|
21
|
+
"Programming Language :: Python :: 3.13",
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[project.urls]
|
|
25
|
+
Homepage = "https://rhemix.ai"
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: rhemix-cs
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder for the Rhemix CS package. Real release coming soon.
|
|
5
|
+
Author-email: Jake Vincent <jake@jwv.dev>
|
|
6
|
+
Project-URL: Homepage, https://rhemix.ai
|
|
7
|
+
Keywords: nlp,synthetic-data,conversational-ai,discourse
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Requires-Python: >=3.11
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# rhemix-cs
|
|
18
|
+
|
|
19
|
+
Placeholder package. The real release of Rhemix CS is coming soon.
|
|
20
|
+
|
|
21
|
+
See https://rhemix.ai for project information.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
rhemix_cs
|