zach-test-tool 0.1.0__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- zach_test_tool-0.1.0/PKG-INFO +15 -0
- zach_test_tool-0.1.0/README.md +0 -0
- zach_test_tool-0.1.0/pyproject.toml +25 -0
- zach_test_tool-0.1.0/src/zach_test_tool/__init__.py +7 -0
- zach_test_tool-0.1.0/src/zach_test_tool/math/__init__.py +3 -0
- zach_test_tool-0.1.0/src/zach_test_tool/math/basic.py +7 -0
- zach_test_tool-0.1.0/src/zach_test_tool/web/__init__.py +3 -0
- zach_test_tool-0.1.0/src/zach_test_tool/web/client.py +7 -0
@@ -0,0 +1,15 @@
|
|
1
|
+
Metadata-Version: 2.3
|
2
|
+
Name: zach-test-tool
|
3
|
+
Version: 0.1.0
|
4
|
+
Summary:
|
5
|
+
Author: zach.zhou
|
6
|
+
Author-email: zach.zhou@airwallex.com
|
7
|
+
Requires-Python: >=3.12
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
9
|
+
Classifier: Programming Language :: Python :: 3.12
|
10
|
+
Classifier: Programming Language :: Python :: 3.13
|
11
|
+
Provides-Extra: web
|
12
|
+
Requires-Dist: requests (>=2.28,<3.0) ; extra == "web"
|
13
|
+
Description-Content-Type: text/markdown
|
14
|
+
|
15
|
+
|
File without changes
|
@@ -0,0 +1,25 @@
|
|
1
|
+
[project]
|
2
|
+
name = "zach-test-tool"
|
3
|
+
version = "0.1.0"
|
4
|
+
description = ""
|
5
|
+
authors = [
|
6
|
+
{name = "zach.zhou",email = "zach.zhou@airwallex.com"}
|
7
|
+
]
|
8
|
+
readme = "README.md"
|
9
|
+
requires-python = ">=3.12"
|
10
|
+
dependencies = [
|
11
|
+
]
|
12
|
+
|
13
|
+
[tool.poetry]
|
14
|
+
packages = [{include = "zach_test_tool", from = "src"}]
|
15
|
+
|
16
|
+
[tool.poetry.dependencies]
|
17
|
+
python = "^3.12"
|
18
|
+
requests = { version = "^2.28", optional = true } # web 子模块专用
|
19
|
+
|
20
|
+
[tool.poetry.extras]
|
21
|
+
web = ["requests"]
|
22
|
+
|
23
|
+
[build-system]
|
24
|
+
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
25
|
+
build-backend = "poetry.core.masonry.api"
|