terryutils 1.0.3__tar.gz → 1.0.5__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.
- {terryutils-1.0.3 → terryutils-1.0.5}/PKG-INFO +2 -2
- {terryutils-1.0.3 → terryutils-1.0.5}/README.md +1 -1
- {terryutils-1.0.3 → terryutils-1.0.5}/pyproject.toml +4 -2
- {terryutils-1.0.3 → terryutils-1.0.5/src}/terryutils.egg-info/PKG-INFO +2 -2
- terryutils-1.0.5/src/terryutils.egg-info/SOURCES.txt +10 -0
- {terryutils-1.0.3 → terryutils-1.0.5/src}/terryutils.egg-info/top_level.txt +0 -1
- terryutils-1.0.3/terryutils.egg-info/SOURCES.txt +0 -10
- {terryutils-1.0.3 → terryutils-1.0.5}/setup.cfg +0 -0
- {terryutils-1.0.3 → terryutils-1.0.5/src}/terryutils/__init__.py +0 -0
- {terryutils-1.0.3 → terryutils-1.0.5/src}/terryutils/log.py +0 -0
- {terryutils-1.0.3 → terryutils-1.0.5/src}/terryutils/mysql_util.py +0 -0
- {terryutils-1.0.3 → terryutils-1.0.5/src}/terryutils.egg-info/dependency_links.txt +0 -0
- {terryutils-1.0.3 → terryutils-1.0.5/src}/terryutils.egg-info/requires.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: terryutils
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.5
|
|
4
4
|
Summary: My personal python toolkit
|
|
5
5
|
Author-email: Terry Zhu <596480606@qq.com>
|
|
6
6
|
License: MIT
|
|
@@ -15,4 +15,4 @@ Requires-Dist: requests>=2.28.0
|
|
|
15
15
|
## 安装
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
pip install
|
|
18
|
+
pip install terryutils
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "terryutils" # pip install 用这个
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.5"
|
|
8
8
|
description = "My personal python toolkit"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.8"
|
|
@@ -16,6 +16,8 @@ authors = [
|
|
|
16
16
|
dependencies = [
|
|
17
17
|
"requests>=2.28.0"
|
|
18
18
|
]
|
|
19
|
+
[tool.setuptools]
|
|
20
|
+
package-dir = {"" = "src"}
|
|
19
21
|
|
|
20
22
|
[tool.setuptools.packages.find]
|
|
21
|
-
where = ["
|
|
23
|
+
where = ["src"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: terryutils
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.5
|
|
4
4
|
Summary: My personal python toolkit
|
|
5
5
|
Author-email: Terry Zhu <596480606@qq.com>
|
|
6
6
|
License: MIT
|
|
@@ -15,4 +15,4 @@ Requires-Dist: requests>=2.28.0
|
|
|
15
15
|
## 安装
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
pip install
|
|
18
|
+
pip install terryutils
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
src/terryutils/__init__.py
|
|
4
|
+
src/terryutils/log.py
|
|
5
|
+
src/terryutils/mysql_util.py
|
|
6
|
+
src/terryutils.egg-info/PKG-INFO
|
|
7
|
+
src/terryutils.egg-info/SOURCES.txt
|
|
8
|
+
src/terryutils.egg-info/dependency_links.txt
|
|
9
|
+
src/terryutils.egg-info/requires.txt
|
|
10
|
+
src/terryutils.egg-info/top_level.txt
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
README.md
|
|
2
|
-
pyproject.toml
|
|
3
|
-
terryutils/__init__.py
|
|
4
|
-
terryutils/log.py
|
|
5
|
-
terryutils/mysql_util.py
|
|
6
|
-
terryutils.egg-info/PKG-INFO
|
|
7
|
-
terryutils.egg-info/SOURCES.txt
|
|
8
|
-
terryutils.egg-info/dependency_links.txt
|
|
9
|
-
terryutils.egg-info/requires.txt
|
|
10
|
-
terryutils.egg-info/top_level.txt
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|