nouvcat 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.
- nouvcat-0.0.1/PKG-INFO +13 -0
- nouvcat-0.0.1/README.md +0 -0
- nouvcat-0.0.1/pyproject.toml +19 -0
- nouvcat-0.0.1/setup.cfg +4 -0
- nouvcat-0.0.1/src/nouvcat/__init__.py +10 -0
- nouvcat-0.0.1/src/nouvcat/py.typed +0 -0
- nouvcat-0.0.1/src/nouvcat.egg-info/PKG-INFO +13 -0
- nouvcat-0.0.1/src/nouvcat.egg-info/SOURCES.txt +8 -0
- nouvcat-0.0.1/src/nouvcat.egg-info/dependency_links.txt +1 -0
- nouvcat-0.0.1/src/nouvcat.egg-info/top_level.txt +1 -0
nouvcat-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nouvcat
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A lightweight and elegant chatbot framework for message automation.
|
|
5
|
+
Author-email: Ciyuu <suruixun2011@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/Ciyuu-dev/nouvcat
|
|
8
|
+
Project-URL: Repository, https://github.com/Ciyuu-dev/nouvcat
|
|
9
|
+
Keywords: chatbot,llm,automation,message
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.11
|
|
13
|
+
Description-Content-Type: text/markdown
|
nouvcat-0.0.1/README.md
ADDED
|
File without changes
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "nouvcat"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "A lightweight and elegant chatbot framework for message automation."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.11"
|
|
7
|
+
license = {text = "MIT"}
|
|
8
|
+
authors = [
|
|
9
|
+
{name = "Ciyuu", email = "suruixun2011@gmail.com"}
|
|
10
|
+
]
|
|
11
|
+
keywords = ["chatbot", "llm", "automation", "message"]
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Development Status :: 1 - Planning",
|
|
14
|
+
"Programming Language :: Python :: 3",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[project.urls]
|
|
18
|
+
Homepage = "https://github.com/Ciyuu-dev/nouvcat"
|
|
19
|
+
Repository = "https://github.com/Ciyuu-dev/nouvcat"
|
nouvcat-0.0.1/setup.cfg
ADDED
|
File without changes
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nouvcat
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A lightweight and elegant chatbot framework for message automation.
|
|
5
|
+
Author-email: Ciyuu <suruixun2011@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/Ciyuu-dev/nouvcat
|
|
8
|
+
Project-URL: Repository, https://github.com/Ciyuu-dev/nouvcat
|
|
9
|
+
Keywords: chatbot,llm,automation,message
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.11
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
nouvcat
|