sampleproject-rs 0.1.0__py3-none-win32.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,48 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sampleproject-rs
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Classifier: Development Status :: 3 - Alpha
|
|
5
|
+
Classifier: Intended Audience :: Developers
|
|
6
|
+
Classifier: Topic :: Software Development :: Build Tools
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
13
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
14
|
+
Provides-Extra: dev
|
|
15
|
+
Provides-Extra: test
|
|
16
|
+
License-File: LICENSE
|
|
17
|
+
Summary: A sample Python project from Rust binary
|
|
18
|
+
Keywords: sample,maturin,development
|
|
19
|
+
Author-email: ftnext <takuyafjp+develop@gmail.com>
|
|
20
|
+
Requires-Python: >=3.10
|
|
21
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
22
|
+
Project-URL: Homepage, https://github.com/ftnext/sampleproject-rs
|
|
23
|
+
Project-URL: Bug Reports, https://github.com/ftnext/sampleproject-rs/issues
|
|
24
|
+
Project-URL: Source, https://github.com/ftnext/sampleproject-rs/
|
|
25
|
+
|
|
26
|
+
# A sample Python project from Rust binary
|
|
27
|
+
|
|
28
|
+
Inspired [sampleproject](https://github.com/pypa/sampleproject/).
|
|
29
|
+
|
|
30
|
+
----
|
|
31
|
+
|
|
32
|
+
This is the README file for the project.
|
|
33
|
+
|
|
34
|
+
The file should use UTF-8 encoding and can be written using
|
|
35
|
+
[reStructuredText][rst] or [markdown][md use] with the appropriate [key set][md
|
|
36
|
+
use]. It will be used to generate the project webpage on PyPI and will be
|
|
37
|
+
displayed as the project homepage on common code-hosting services, and should be
|
|
38
|
+
written for that purpose.
|
|
39
|
+
|
|
40
|
+
Typical contents for this file would include an overview of the project, basic
|
|
41
|
+
usage examples, etc. Generally, including the project changelog in here is not a
|
|
42
|
+
good idea, although a simple “What's New” section for the most recent version
|
|
43
|
+
may be appropriate.
|
|
44
|
+
|
|
45
|
+
[rst]: http://docutils.sourceforge.net/rst.html
|
|
46
|
+
[md]: https://tools.ietf.org/html/rfc7764#section-3.5 "CommonMark variant"
|
|
47
|
+
[md use]: https://packaging.python.org/specifications/core-metadata/#description-content-type-optional
|
|
48
|
+
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
sampleproject_rs-0.1.0.data/scripts/sample.exe,sha256=T0ltqR9uSfCsTpmGcy851adJ7-hUC2YjBXSkguCWkQ8,115200
|
|
2
|
+
sampleproject_rs-0.1.0.dist-info/METADATA,sha256=XkAXI-W5GCryGVFlDYtouUrRaXVIXk0VljFYAUZCuZo,2058
|
|
3
|
+
sampleproject_rs-0.1.0.dist-info/WHEEL,sha256=uT4IaxTLAwDsS7H6Z9jQmlZsLccZQ2CCUpoUS6OYuwI,89
|
|
4
|
+
sampleproject_rs-0.1.0.dist-info/licenses/LICENSE,sha256=6n7668q63KzzKaLVPFG8Bz9PclsmNktGM5b5Qlynp8Y,1084
|
|
5
|
+
sampleproject_rs-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 nikkie
|
|
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.
|