vantu-baitappy 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.
- vantu_baitappy-0.1.0/PKG-INFO +19 -0
- vantu_baitappy-0.1.0/README.md +2 -0
- vantu_baitappy-0.1.0/setup.cfg +4 -0
- vantu_baitappy-0.1.0/setup.py +17 -0
- vantu_baitappy-0.1.0/vantu_baitappy/__init__.py +1 -0
- vantu_baitappy-0.1.0/vantu_baitappy/operations.py +19 -0
- vantu_baitappy-0.1.0/vantu_baitappy.egg-info/PKG-INFO +19 -0
- vantu_baitappy-0.1.0/vantu_baitappy.egg-info/SOURCES.txt +8 -0
- vantu_baitappy-0.1.0/vantu_baitappy.egg-info/dependency_links.txt +1 -0
- vantu_baitappy-0.1.0/vantu_baitappy.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vantu-baitappy
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Thu vien tinh toan va hinh hoc
|
|
5
|
+
Author: Le Van Tu
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.6
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: classifier
|
|
13
|
+
Dynamic: description
|
|
14
|
+
Dynamic: description-content-type
|
|
15
|
+
Dynamic: requires-python
|
|
16
|
+
Dynamic: summary
|
|
17
|
+
|
|
18
|
+
# Thu vien Math Test
|
|
19
|
+
Thu vien tinh toan co bản và hinh chu nhat.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="vantu-baitappy", # Tên gói hiển thị trên trang PyPI
|
|
5
|
+
version="0.1.0",
|
|
6
|
+
packages=find_packages(),
|
|
7
|
+
description="Thu vien tinh toan va hinh hoc",
|
|
8
|
+
long_description=open("README.md", encoding="utf-8").read(),
|
|
9
|
+
long_description_content_type="text/markdown",
|
|
10
|
+
author="Le Van Tu",
|
|
11
|
+
classifiers=[
|
|
12
|
+
"Programming Language :: Python :: 3",
|
|
13
|
+
"License :: OSI Approved :: MIT License",
|
|
14
|
+
"Operating System :: OS Independent",
|
|
15
|
+
],
|
|
16
|
+
python_requires='>=3.6',
|
|
17
|
+
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .operations import add, subtract, multiply, divide, chu_vi_hcn, dien_tich_hcn
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
def add(a, b):
|
|
2
|
+
return a + b
|
|
3
|
+
|
|
4
|
+
def subtract(a, b):
|
|
5
|
+
return a - b
|
|
6
|
+
|
|
7
|
+
def multiply(a, b):
|
|
8
|
+
return a * b
|
|
9
|
+
|
|
10
|
+
def divide(a, b):
|
|
11
|
+
if b == 0:
|
|
12
|
+
return "Lỗi: Không thể chia cho 0"
|
|
13
|
+
return a / b
|
|
14
|
+
|
|
15
|
+
def chu_vi_hcn(dai, rong):
|
|
16
|
+
return (dai + rong) * 2
|
|
17
|
+
|
|
18
|
+
def dien_tich_hcn(dai, rong):
|
|
19
|
+
return dai * rong
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vantu-baitappy
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Thu vien tinh toan va hinh hoc
|
|
5
|
+
Author: Le Van Tu
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.6
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: classifier
|
|
13
|
+
Dynamic: description
|
|
14
|
+
Dynamic: description-content-type
|
|
15
|
+
Dynamic: requires-python
|
|
16
|
+
Dynamic: summary
|
|
17
|
+
|
|
18
|
+
# Thu vien Math Test
|
|
19
|
+
Thu vien tinh toan co bản và hinh chu nhat.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
vantu_baitappy
|