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.
- asiacellfree-0.1.0/AsiaCellFree/__init__.py +1 -0
- asiacellfree-0.1.0/AsiaCellFree/calculator.py +5 -0
- asiacellfree-0.1.0/AsiaCellFree.egg-info/PKG-INFO +23 -0
- asiacellfree-0.1.0/AsiaCellFree.egg-info/SOURCES.txt +8 -0
- asiacellfree-0.1.0/AsiaCellFree.egg-info/dependency_links.txt +1 -0
- asiacellfree-0.1.0/AsiaCellFree.egg-info/top_level.txt +1 -0
- asiacellfree-0.1.0/PKG-INFO +23 -0
- asiacellfree-0.1.0/README.md +2 -0
- asiacellfree-0.1.0/setup.cfg +4 -0
- asiacellfree-0.1.0/setup.py +19 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .calculator import add, subtract
|
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -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,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
|
+
)
|