Nanna 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.
- nanna-0.1.0/Nanna/__init__.py +2 -0
- nanna-0.1.0/Nanna/cli.py +3 -0
- nanna-0.1.0/Nanna.egg-info/PKG-INFO +20 -0
- nanna-0.1.0/Nanna.egg-info/SOURCES.txt +9 -0
- nanna-0.1.0/Nanna.egg-info/dependency_links.txt +1 -0
- nanna-0.1.0/Nanna.egg-info/entry_points.txt +2 -0
- nanna-0.1.0/Nanna.egg-info/top_level.txt +1 -0
- nanna-0.1.0/PKG-INFO +20 -0
- nanna-0.1.0/README.md +12 -0
- nanna-0.1.0/pyproject.toml +15 -0
- nanna-0.1.0/setup.cfg +4 -0
nanna-0.1.0/Nanna/cli.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: Nanna
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Wenxi AI tools 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
|
nanna-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: Nanna
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Wenxi AI tools 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
|
nanna-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 = "Nanna"
|
|
8
|
+
version = "0.1.0"
|
|
9
|
+
description = "Wenxi AI tools 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"
|
nanna-0.1.0/setup.cfg
ADDED