fundev-api 0.0.1__py3-none-any.whl

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.
fundev_api/__init__.py ADDED
@@ -0,0 +1,7 @@
1
+ """fundev-api 占位包。
2
+
3
+ 当前仅用于在 PyPI 上保留 `fundev-api` 这个名字,尚无实际功能代码,
4
+ 具体功能会在之后陆续补充。
5
+ """
6
+
7
+ __version__ = "0.0.1"
fundev_api/py.typed ADDED
File without changes
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.5
2
+ Name: fundev-api
3
+ Version: 0.0.1
4
+ Summary: fundev-api
5
+ Project-URL: Organization, https://github.com/farfarfun
6
+ Project-URL: Repository, https://github.com/farfarfun/fundev-api
7
+ Project-URL: Releases, https://github.com/farfarfun/fundev-api/releases
8
+ Author-email: 牛哥 <niuliangtao@qq.com>, farfarfun <farfarfun@qq.com>
9
+ Maintainer-email: 牛哥 <niuliangtao@qq.com>, farfarfun <farfarfun@qq.com>
10
+ License-Expression: MIT
11
+ License-File: LICENSE
12
+ Requires-Python: >=3.10
13
+ Description-Content-Type: text/markdown
14
+
15
+ # fundev-api
16
+
17
+ 占位仓库,尚无实际功能代码。发布这个空壳版本只是为了在 PyPI 上保留 `fundev-api` 这个包名,避免被无关项目抢注;具体功能会在之后陆续补充。
18
+
19
+ ## Install
20
+
21
+ ```bash
22
+ pip install fundev-api
23
+ ```
24
+
25
+ ## 最小示例
26
+
27
+ 当前仅有占位实现,可以确认安装成功并读取版本号:
28
+
29
+ ```python
30
+ import fundev_api
31
+
32
+ print(fundev_api.__version__) # 0.0.1
33
+ ```
34
+
35
+ ---
36
+
37
+ ## 关于 farfarfun
38
+
39
+ [farfarfun](https://github.com/farfarfun) 是一个专注于实用工具库的开源组织,
40
+ 涵盖云存储、数据处理、AI、多媒体与开发工具链等方向。
41
+
42
+ - 🏠 组织主页:<https://github.com/farfarfun>
43
+ - 📦 PyPI:<https://pypi.org/user/niuliangtao/>
44
+ - 📧 联系:farfarfun@qq.com
45
+
46
+ 本项目基于 [MIT](LICENSE) 协议开源。
@@ -0,0 +1,6 @@
1
+ fundev_api/__init__.py,sha256=oneJmqSQicSl_gTdutzid7EIk3g068hA25tUa6fNLRU,185
2
+ fundev_api/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ fundev_api-0.0.1.dist-info/METADATA,sha256=gHaTtj_gB07pDMqIsF43vZrT8puqi7zy5BOOT2JLqe8,1332
4
+ fundev_api-0.0.1.dist-info/WHEEL,sha256=THafob7ofN-NsuMN7Mg4qZyHaQI7KkD-QlcQatYhXPo,87
5
+ fundev_api-0.0.1.dist-info/licenses/LICENSE,sha256=Vs_P6IJec4VjuH3Pa1zvKaxGVcqxGgJz83AHUel24cg,1066
6
+ fundev_api-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.32.3
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 farfarfun
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.