avalonmind 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.
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: avalonmind
3
+ Version: 0.0
4
+ Summary: CONTROL NETWORK OF VEX
5
+ Author-email: maxcorp@internet.ru
6
+ Dynamic: author-email
7
+ Dynamic: summary
@@ -0,0 +1,2 @@
1
+ def ACTIVATION():
2
+ return "AVALON IS TURNED ON."
File without changes
@@ -0,0 +1,2 @@
1
+ from .BEGININGMIND import *
2
+ from .PROCESSMIND import *
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: avalonmind
3
+ Version: 0.0
4
+ Summary: CONTROL NETWORK OF VEX
5
+ Author-email: maxcorp@internet.ru
6
+ Dynamic: author-email
7
+ Dynamic: summary
@@ -0,0 +1,9 @@
1
+ setup.py
2
+ avalonmind/BEGININGMIND.py
3
+ avalonmind/PROCESSMIND.py
4
+ avalonmind/__init__.py
5
+ avalonmind.egg-info/PKG-INFO
6
+ avalonmind.egg-info/SOURCES.txt
7
+ avalonmind.egg-info/dependency_links.txt
8
+ avalonmind.egg-info/not-zip-safe
9
+ avalonmind.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ avalonmind
@@ -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='avalonmind',
4
+ version='0.0',
5
+ description='CONTROL NETWORK OF VEX',
6
+ packages=['avalonmind'],
7
+ author_email='maxcorp@internet.ru',
8
+ zip_safe=False)