Muhammad 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.
- muhammad-0.1.0/Muhammad.egg-info/PKG-INFO +20 -0
- muhammad-0.1.0/Muhammad.egg-info/SOURCES.txt +9 -0
- muhammad-0.1.0/Muhammad.egg-info/dependency_links.txt +1 -0
- muhammad-0.1.0/Muhammad.egg-info/entry_points.txt +2 -0
- muhammad-0.1.0/Muhammad.egg-info/top_level.txt +1 -0
- muhammad-0.1.0/Nanna/__init__.py +2 -0
- muhammad-0.1.0/Nanna/cli.py +3 -0
- muhammad-0.1.0/PKG-INFO +20 -0
- muhammad-0.1.0/README.md +12 -0
- muhammad-0.1.0/pyproject.toml +15 -0
- muhammad-0.1.0/setup.cfg +4 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: Muhammad
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: AI Assistant Collection:)
|
|
5
|
+
Author: Wenxi Wang
|
|
6
|
+
Requires-Python: >=3.9
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
# Wenxi AI
|
|
11
|
+
|
|
12
|
+
A collection of useful AI and data tools.
|
|
13
|
+
|
|
14
|
+
## Install
|
|
15
|
+
|
|
16
|
+
pip install wenxi-ai
|
|
17
|
+
|
|
18
|
+
## Run
|
|
19
|
+
|
|
20
|
+
wenxi
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Nanna
|
muhammad-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: Muhammad
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: AI Assistant Collection:)
|
|
5
|
+
Author: Wenxi Wang
|
|
6
|
+
Requires-Python: >=3.9
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
# Wenxi AI
|
|
11
|
+
|
|
12
|
+
A collection of useful AI and data tools.
|
|
13
|
+
|
|
14
|
+
## Install
|
|
15
|
+
|
|
16
|
+
pip install wenxi-ai
|
|
17
|
+
|
|
18
|
+
## Run
|
|
19
|
+
|
|
20
|
+
wenxi
|
muhammad-0.1.0/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
|
|
2
|
+
[build-system]
|
|
3
|
+
requires = ["setuptools>=61.0"]
|
|
4
|
+
build-backend = "setuptools.build_meta"
|
|
5
|
+
|
|
6
|
+
[project]
|
|
7
|
+
name = "Muhammad"
|
|
8
|
+
version = "0.1.0"
|
|
9
|
+
description = "AI Assistant Collection:)"
|
|
10
|
+
authors = [{name="Wenxi Wang"}]
|
|
11
|
+
readme = "README.md"
|
|
12
|
+
requires-python = ">=3.9"
|
|
13
|
+
|
|
14
|
+
[project.scripts]
|
|
15
|
+
wenxi = "wenxi_ai.cli:main"
|
muhammad-0.1.0/setup.cfg
ADDED