mado0 0.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.
mado0-0.1/PKG-INFO ADDED
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: mado0
3
+ Version: 0.1
4
+ Summary: My custom library to replace aras1
5
+ Author: mado
6
+ Dynamic: author
7
+ Dynamic: summary
@@ -0,0 +1,6 @@
1
+ # ده الكود الخاص بمكتبتك
2
+ import os
3
+
4
+ def my_tool():
5
+ print("Welcome to mado0 by mado!")
6
+ # تقدر تحط هنا أي أوامر عايز المكتبة تنفذها
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: mado0
3
+ Version: 0.1
4
+ Summary: My custom library to replace aras1
5
+ Author: mado
6
+ Dynamic: author
7
+ Dynamic: summary
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ mado0/__init__.py
3
+ mado0.egg-info/PKG-INFO
4
+ mado0.egg-info/SOURCES.txt
5
+ mado0.egg-info/dependency_links.txt
6
+ mado0.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ mado0
mado0-0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
mado0-0.1/setup.py ADDED
@@ -0,0 +1,9 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='mado0',
5
+ version='0.1',
6
+ description='My custom library to replace aras1',
7
+ author='mado',
8
+ packages=find_packages(),
9
+ )