physfs.py 0.3.0__cp313-cp313-win_amd64.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.
Binary file
@@ -0,0 +1,77 @@
1
+ Metadata-Version: 2.4
2
+ Name: physfs.py
3
+ Version: 0.3.0
4
+ Summary: PhysFS.py is a python wrapper for the PhysicsFS library.
5
+ Home-page: https://github.com/shabbywu/physfs.py
6
+ Author: shabbywu
7
+ Author-email: shabbywu@qq.com
8
+ Requires-Python: >=3.8
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+ Provides-Extra: test
12
+ Requires-Dist: pytest; extra == "test"
13
+ Dynamic: author
14
+ Dynamic: author-email
15
+ Dynamic: description
16
+ Dynamic: description-content-type
17
+ Dynamic: home-page
18
+ Dynamic: license-file
19
+ Dynamic: provides-extra
20
+ Dynamic: requires-python
21
+ Dynamic: summary
22
+
23
+ PhysFS.py
24
+ ==============
25
+
26
+ ![github-stars][stars-badge]
27
+
28
+ | CI | status |
29
+ |----|--------|
30
+ | Source install | [![CI status][actions-ci-badge]][actions-ci-link] |
31
+ | [`cibuildwheel`][] release | [![Release status][actions-release-badge]][actions-release-link] |
32
+
33
+ [stars-badge]: https://img.shields.io/github/stars/shabbywu/physfs.py?style=social
34
+ [actions-ci-link]: https://github.com/shabbywu/physfs.py/actions/workflows/ci.yml
35
+ [actions-ci-badge]: https://github.com/shabbywu/physfs.py/actions/workflows/ci.yml/badge.svg?branch=master
36
+ [actions-release-link]: https://github.com/shabbywu/physfs.py/actions/workflows/release.yml
37
+ [actions-release-badge]: https://github.com/shabbywu/physfs.py/actions/workflows/release.yml/badge.svg
38
+ [`cibuildwheel`]: https://cibuildwheel.pypa.io
39
+
40
+ PhysFS.py is a python wrapper for the PhysicsFS library.
41
+
42
+ Installation
43
+ ------------
44
+
45
+ - `pip install physfs.py`
46
+
47
+ Requirements
48
+ ------------
49
+
50
+ - CPython 3.8 or newer.
51
+ - CMake 3.15 or newer, pybind11 2.10 or newer, and a C++17 compiler when
52
+ building from source. pip installs the build dependencies automatically.
53
+ - Prebuilt macOS wheels target Apple Silicon (`arm64`) only; Intel macOS uses the source distribution.
54
+
55
+ Features
56
+ ------------
57
+ physfs.py provides an encapsulation of the basic interface of PhysFS, including `init`, `deinit`, `mount`, `mount_memory`, `unmount`, `ls`, `read(cat)`, `stat`.
58
+
59
+ Enables python to use PhysFS at a minimum.
60
+
61
+ License
62
+ -------
63
+
64
+ pybind11 is provided under a BSD-style license that can be found in the LICENSE
65
+ file. By using, distributing, or contributing to this project, you agree to the
66
+ terms and conditions of this license.
67
+
68
+ Test call
69
+ ---------
70
+
71
+ ```python
72
+ import physfs
73
+ physfs.init()
74
+
75
+ physfs.mount("./example.zip")
76
+ physfs.ls()
77
+ ```
@@ -0,0 +1,6 @@
1
+ physfs.cp313-win_amd64.pyd,sha256=XnX7hm_mTeJOxwAUR3NzJnmEHAdiogmQDcUn0MCkjlU,384512
2
+ physfs_py-0.3.0.dist-info/licenses/LICENSE,sha256=N_R9-5l0U5HZyk0-el1LtB0nxSXttAIy78h4x_w_bgk,2218
3
+ physfs_py-0.3.0.dist-info/METADATA,sha256=IY2SxiSkK3bgNL6l0PGxqWbWGEYsu4HEVhgwySt325k,2417
4
+ physfs_py-0.3.0.dist-info/WHEEL,sha256=AP_wkikJcUkDPUGvTNydv7g0R7BhW1u_fVHNKW7TJyI,101
5
+ physfs_py-0.3.0.dist-info/top_level.txt,sha256=8AnjvZx2gMZqQEfl6ZGLarWJjUeDN9Qms8FJEpmfabY,7
6
+ physfs_py-0.3.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (83.0.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-win_amd64
5
+
@@ -0,0 +1,36 @@
1
+ Copyright (c) 2016 The Pybind Development Team, All rights reserved.
2
+
3
+ Redistribution and use in source and binary forms, with or without
4
+ modification, are permitted provided that the following conditions are met:
5
+
6
+ 1. Redistributions of source code must retain the above copyright notice, this
7
+ list of conditions and the following disclaimer.
8
+
9
+ 2. Redistributions in binary form must reproduce the above copyright notice,
10
+ this list of conditions and the following disclaimer in the documentation
11
+ and/or other materials provided with the distribution.
12
+
13
+ 3. Neither the name of the copyright holder nor the names of its contributors
14
+ may be used to endorse or promote products derived from this software
15
+ without specific prior written permission.
16
+
17
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
21
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
24
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ You are under no obligation whatsoever to provide any bug fixes, patches, or
29
+ upgrades to the features, functionality or performance of the source code
30
+ ("Enhancements") to anyone; however, if you choose to make your Enhancements
31
+ available either publicly, or directly to the author of this software, without
32
+ imposing a separate written license agreement for such Enhancements, then you
33
+ hereby grant the following license: a non-exclusive, royalty-free perpetual
34
+ license to install, use, modify, prepare derivative works, incorporate into
35
+ other computer software, distribute, and sublicense such enhancements or
36
+ derivative works thereof, in binary and source code form.
@@ -0,0 +1 @@
1
+ physfs