AsiaCellFree 0.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 @@
1
+ from .calculator import add, subtract
@@ -0,0 +1,5 @@
1
+ def add(x, y):
2
+ return x + y
3
+
4
+ def subtract(x, y):
5
+ return x - y
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: AsiaCellFree
3
+ Version: 0.1.0
4
+ Summary: مكتبة بسيطة للعمليات الحسابية
5
+ Home-page: https://github.com/yourusername/my_awesome_library
6
+ Author: ALSHKA
7
+ Author-email: email@example.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.6
12
+ Description-Content-Type: text/markdown
13
+ Dynamic: author
14
+ Dynamic: author-email
15
+ Dynamic: classifier
16
+ Dynamic: description
17
+ Dynamic: description-content-type
18
+ Dynamic: home-page
19
+ Dynamic: requires-python
20
+ Dynamic: summary
21
+
22
+ # AsiaCell Library
23
+ This is my awesome python package.
@@ -0,0 +1,8 @@
1
+ README.md
2
+ setup.py
3
+ AsiaCellFree/__init__.py
4
+ AsiaCellFree/calculator.py
5
+ AsiaCellFree.egg-info/PKG-INFO
6
+ AsiaCellFree.egg-info/SOURCES.txt
7
+ AsiaCellFree.egg-info/dependency_links.txt
8
+ AsiaCellFree.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ AsiaCellFree
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: AsiaCellFree
3
+ Version: 0.1.0
4
+ Summary: مكتبة بسيطة للعمليات الحسابية
5
+ Home-page: https://github.com/yourusername/my_awesome_library
6
+ Author: ALSHKA
7
+ Author-email: email@example.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.6
12
+ Description-Content-Type: text/markdown
13
+ Dynamic: author
14
+ Dynamic: author-email
15
+ Dynamic: classifier
16
+ Dynamic: description
17
+ Dynamic: description-content-type
18
+ Dynamic: home-page
19
+ Dynamic: requires-python
20
+ Dynamic: summary
21
+
22
+ # AsiaCell Library
23
+ This is my awesome python package.
@@ -0,0 +1,2 @@
1
+ # AsiaCell Library
2
+ This is my awesome python package.
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,19 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="AsiaCellFree", # اسم المكتبة (يجب أن يكون فريداً على PyPI)
5
+ version="0.1.0", # إصدار المكتبة
6
+ author="ALSHKA",
7
+ author_email="email@example.com",
8
+ description="مكتبة بسيطة للعمليات الحسابية",
9
+ long_description=open("README.md").read(),
10
+ long_description_content_type="text/markdown",
11
+ url="https://github.com/yourusername/my_awesome_library", # رابط المشروع إن وجد
12
+ packages=find_packages(), # يبحث تلقائياً عن المجلدات التي تحتوي على __init__.py
13
+ classifiers=[
14
+ "Programming Language :: Python :: 3",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Operating System :: OS Independent",
17
+ ],
18
+ python_requires='>=3.6',
19
+ )