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 +9 -0
- tvtoan-0.1.0/README.md +0 -0
- tvtoan-0.1.0/setup.cfg +4 -0
- tvtoan-0.1.0/setup.py +10 -0
- tvtoan-0.1.0/tvtoan/TVToan.py +5 -0
- tvtoan-0.1.0/tvtoan/__init__.py +1 -0
- tvtoan-0.1.0/tvtoan.egg-info/PKG-INFO +9 -0
- tvtoan-0.1.0/tvtoan.egg-info/SOURCES.txt +8 -0
- tvtoan-0.1.0/tvtoan.egg-info/dependency_links.txt +1 -0
- tvtoan-0.1.0/tvtoan.egg-info/top_level.txt +1 -0
tvtoan-0.1.0/PKG-INFO
ADDED
tvtoan-0.1.0/README.md
ADDED
|
File without changes
|
tvtoan-0.1.0/setup.cfg
ADDED
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 @@
|
|
|
1
|
+
from .TVToan import tinh_tong, tinh_hieu
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tvtoan
|