PyVRML97-accelerate 2.3.4b3__cp315-cp315-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.
@@ -0,0 +1,36 @@
1
+ Metadata-Version: 2.4
2
+ Name: PyVRML97-accelerate
3
+ Version: 2.3.4b3
4
+ Summary: Scenegraph acceleration code for PyVRML97
5
+ Author-email: "Mike C. Fletcher" <mcfletch@vrplumber.com>
6
+ License: BSD-style, see license.txt for details
7
+ Project-URL: Homepage, http://pyopengl.sourceforge.net/context/
8
+ Keywords: VRML,VRML97,scenegraph,accelerate,fields
9
+ Classifier: License :: OSI Approved :: BSD License
10
+ Classifier: Programming Language :: Python
11
+ Classifier: Programming Language :: C
12
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
13
+ Classifier: Topic :: Multimedia :: Graphics :: 3D Rendering
14
+ Classifier: Intended Audience :: Developers
15
+ Requires-Python: >=3.9
16
+ Description-Content-Type: text/plain
17
+ Requires-Dist: numpy
18
+
19
+ PyVRML97-accelerate
20
+ ===================
21
+
22
+ Scenegraph acceleration code for PyVRML97
23
+
24
+ This set of C extensions provides acceleration of common operations
25
+ within the PyVRML97 and OpenGLContext rendering engine.
26
+
27
+ The extensions build as standard Python extensions. The C wrappers are
28
+ regenerated from the ``.pyx`` sources by Cython at build time; the generated
29
+ ``.c`` files are not committed or shipped. Cython and numpy are declared as
30
+ build dependencies in ``pyproject.toml``, so a PEP 517 build (e.g. ``pip
31
+ install`` or ``python -m build``) installs them automatically. The numpy
32
+ headers are required to build the ``frustcullaccel`` and ``tmatrixaccel``
33
+ modules.
34
+
35
+ This package is part of the PyVRML97 project and is distributed under the
36
+ BSD license (see license.txt for details).
@@ -0,0 +1,8 @@
1
+ vrml_accelerate/__init__.py,sha256=eExgDo44aZQTgOJRpXSu6O9bAfOKyhZjTb506WKr1w8,60
2
+ vrml_accelerate/fieldaccel2.cp315-win_amd64.pyd,sha256=1nI7WhmS1l0AgeIyUmfBAvjbdfxQduOiY_IPrthXnIE,68608
3
+ vrml_accelerate/frustcullaccel.cp315-win_amd64.pyd,sha256=xiJpjWMr6T3m2BElzG98QOidU8qmLqnRNn-y2FRus04,57344
4
+ vrml_accelerate/tmatrixaccel.cp315-win_amd64.pyd,sha256=cKSEyXtqVZpuE7zNx_I6MkV1-e1tJZuboZIZwdDTE0s,68608
5
+ pyvrml97_accelerate-2.3.4b3.dist-info/METADATA,sha256=8s8R-RlxM7xjviU_oziIeEkqOcVOngo_eG-wSynDpd0,1544
6
+ pyvrml97_accelerate-2.3.4b3.dist-info/WHEEL,sha256=geuJoH1aW6kS7q0cKuoOBUdE-tpBsTvRf9l5rOGbxQs,101
7
+ pyvrml97_accelerate-2.3.4b3.dist-info/top_level.txt,sha256=Qfj5jOwHoBe5xyEgv0CR84j5eZya6KKLWVAwhUFcn9w,16
8
+ pyvrml97_accelerate-2.3.4b3.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (84.0.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp315-cp315-win_amd64
5
+
@@ -0,0 +1 @@
1
+ vrml_accelerate
@@ -0,0 +1,2 @@
1
+ """PyVRML97 Accelerator module"""
2
+ __version__ = "2.3.4b3"