phonecopy 0.0.1__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.
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: phonecopy
3
+ Version: 0.0.1
4
+ Summary: Add your description here
5
+ Requires-Python: >=3.10
6
+ Description-Content-Type: text/markdown
7
+
8
+ # phonecopy
9
+
10
+ Add your description here.
@@ -0,0 +1,3 @@
1
+ # phonecopy
2
+
3
+ Add your description here.
@@ -0,0 +1,10 @@
1
+ """phonecopy — 说明待补充。"""
2
+
3
+ from importlib.metadata import PackageNotFoundError, version
4
+
5
+ try:
6
+ __version__ = version("phonecopy")
7
+ except PackageNotFoundError: # 未安装时(例如直接从源码运行)回退
8
+ __version__ = "0.0.0+unknown"
9
+
10
+ __all__ = ["__version__"]
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: phonecopy
3
+ Version: 0.0.1
4
+ Summary: Add your description here
5
+ Requires-Python: >=3.10
6
+ Description-Content-Type: text/markdown
7
+
8
+ # phonecopy
9
+
10
+ Add your description here.
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ phonecopy/__init__.py
4
+ phonecopy.egg-info/PKG-INFO
5
+ phonecopy.egg-info/SOURCES.txt
6
+ phonecopy.egg-info/dependency_links.txt
7
+ phonecopy.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ phonecopy
@@ -0,0 +1,21 @@
1
+ [project]
2
+ name = "phonecopy"
3
+ version = "0.0.1"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.10"
7
+ dependencies = []
8
+
9
+ [tool.hatch.build.targets.wheel]
10
+ packages = ["phonecpoy"]
11
+
12
+ [dependency-groups]
13
+ dev = [
14
+ "pytest>=9.1.1",
15
+ "pytest-asyncio>=1.4.0",
16
+ ]
17
+
18
+ [tool.pytest.ini_options]
19
+ asyncio_mode = "strict"
20
+ pythonpath = ["."]
21
+ addopts = "-v -s --tb=short"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+