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