hellosailb 2.0.0b1__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,10 @@
1
+ Metadata-Version: 2.1
2
+ Name: hellosailb
3
+ Version: 2.0.0b1
4
+ Summary: UNKNOWN
5
+ Home-page: UNKNOWN
6
+ License: UNKNOWN
7
+ Platform: UNKNOWN
8
+
9
+ UNKNOWN
10
+
@@ -0,0 +1 @@
1
+ from .main import hellosaib
@@ -0,0 +1,2 @@
1
+ def hellosaib():
2
+ print("Hello from AI!!")
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.1
2
+ Name: hellosailb
3
+ Version: 2.0.0b1
4
+ Summary: UNKNOWN
5
+ Home-page: UNKNOWN
6
+ License: UNKNOWN
7
+ Platform: UNKNOWN
8
+
9
+ UNKNOWN
10
+
@@ -0,0 +1,7 @@
1
+ setup.py
2
+ hellosailb/__init__.py
3
+ hellosailb/main.py
4
+ hellosailb.egg-info/PKG-INFO
5
+ hellosailb.egg-info/SOURCES.txt
6
+ hellosailb.egg-info/dependency_links.txt
7
+ hellosailb.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ hellosailb
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,10 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='hellosailb',
5
+ version='2.0.0b1',
6
+ packages = find_packages(),
7
+ install_requires=[
8
+
9
+ ]
10
+ )