luaprot 1__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.
luaprot-1/PKG-INFO ADDED
@@ -0,0 +1,6 @@
1
+ Metadata-Version: 2.1
2
+ Name: luaprot
3
+ Version: 1
4
+ Summary: The offical python package for the LuaProt whitelisting service
5
+ Author: luaprot
6
+ Author-email: protlua@gmail.com
@@ -0,0 +1 @@
1
+ ECHO is on.
@@ -0,0 +1,2 @@
1
+ def hello():
2
+ print("Hello from luaprot!")
@@ -0,0 +1,6 @@
1
+ Metadata-Version: 2.1
2
+ Name: luaprot
3
+ Version: 1
4
+ Summary: The offical python package for the LuaProt whitelisting service
5
+ Author: luaprot
6
+ Author-email: protlua@gmail.com
@@ -0,0 +1,7 @@
1
+ setup.py
2
+ luaprot/__init__.py
3
+ luaprot/luaprot.py
4
+ luaprot.egg-info/PKG-INFO
5
+ luaprot.egg-info/SOURCES.txt
6
+ luaprot.egg-info/dependency_links.txt
7
+ luaprot.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ luaprot
luaprot-1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
luaprot-1/setup.py ADDED
@@ -0,0 +1,10 @@
1
+ from setuptools import setup
2
+
3
+ setup(
4
+ name='luaprot',
5
+ version='1',
6
+ packages=['luaprot'],
7
+ author='luaprot',
8
+ author_email='protlua@gmail.com',
9
+ description='The offical python package for the LuaProt whitelisting service',
10
+ )