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.
@@ -0,0 +1,2 @@
1
+
2
+ __version__ = "0.1.0"
@@ -0,0 +1,3 @@
1
+
2
+ def main():
3
+ print("Hi, I’m Nanna, your AI assistant here! šŸš€šŸ’–šŸ¤–šŸŒˆāœØ")
@@ -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,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ Nanna/__init__.py
4
+ Nanna/cli.py
5
+ Nanna.egg-info/PKG-INFO
6
+ Nanna.egg-info/SOURCES.txt
7
+ Nanna.egg-info/dependency_links.txt
8
+ Nanna.egg-info/entry_points.txt
9
+ Nanna.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ wenxi = wenxi_ai.cli:main
@@ -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,12 @@
1
+
2
+ # Wenxi AI
3
+
4
+ A collection of useful AI and data tools.
5
+
6
+ ## Install
7
+
8
+ pip install wenxi-ai
9
+
10
+ ## Run
11
+
12
+ wenxi
@@ -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
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+