tvtoan 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.
tvtoan-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: tvtoan
3
+ Version: 0.1.0
4
+ Summary: Thư viện toán học đơn giản (cộng, trừ)
5
+ Author: Hoang
6
+ Requires-Python: >=3.6
7
+ Dynamic: author
8
+ Dynamic: requires-python
9
+ Dynamic: summary
tvtoan-0.1.0/README.md ADDED
File without changes
tvtoan-0.1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
tvtoan-0.1.0/setup.py ADDED
@@ -0,0 +1,10 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="tvtoan", # tên package
5
+ version="0.1.0", # phiên bản
6
+ author="Hoang", # tác giả
7
+ description="Thư viện toán học đơn giản (cộng, trừ)",
8
+ packages=find_packages(), # tự động tìm thư mục chứa __init__.py
9
+ python_requires=">=3.6", # yêu cầu phiên bản Python
10
+ )
@@ -0,0 +1,5 @@
1
+ def tinh_tong(a, b):
2
+ return a + b
3
+
4
+ def tinh_hieu(a, b):
5
+ return a - b
@@ -0,0 +1 @@
1
+ from .TVToan import tinh_tong, tinh_hieu
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: tvtoan
3
+ Version: 0.1.0
4
+ Summary: Thư viện toán học đơn giản (cộng, trừ)
5
+ Author: Hoang
6
+ Requires-Python: >=3.6
7
+ Dynamic: author
8
+ Dynamic: requires-python
9
+ Dynamic: summary
@@ -0,0 +1,8 @@
1
+ README.md
2
+ setup.py
3
+ tvtoan/TVToan.py
4
+ tvtoan/__init__.py
5
+ tvtoan.egg-info/PKG-INFO
6
+ tvtoan.egg-info/SOURCES.txt
7
+ tvtoan.egg-info/dependency_links.txt
8
+ tvtoan.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ tvtoan