module2229992229 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,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: module2229992229
3
+ Version: 1.0
4
+ Summary: DESCRIPTION
5
+ Author-email: orion4605@gmail.com
6
+ Dynamic: author-email
7
+ Dynamic: summary
@@ -0,0 +1,2 @@
1
+ from .module1 import *
2
+ from .module2 import *
@@ -0,0 +1,3 @@
1
+ def func1():
2
+ return "hello from module1"
3
+
@@ -0,0 +1,2 @@
1
+ def func2():
2
+ return "hello from module2"
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: module2229992229
3
+ Version: 1.0
4
+ Summary: DESCRIPTION
5
+ Author-email: orion4605@gmail.com
6
+ Dynamic: author-email
7
+ Dynamic: summary
@@ -0,0 +1,9 @@
1
+ setup.py
2
+ module2229992229/__init__.py
3
+ module2229992229/module1.py
4
+ module2229992229/module2.py
5
+ module2229992229.egg-info/PKG-INFO
6
+ module2229992229.egg-info/SOURCES.txt
7
+ module2229992229.egg-info/dependency_links.txt
8
+ module2229992229.egg-info/not-zip-safe
9
+ module2229992229.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ module2229992229
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,8 @@
1
+ from setuptools import setup
2
+
3
+ setup(name='module2229992229',
4
+ version='1.0',
5
+ description='DESCRIPTION',
6
+ packages=['module2229992229'],
7
+ author_email='orion4605@gmail.com',
8
+ zip_safe=False)