panda3d-interrogate 0.1.0__cp33-abi3-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.
Potentially problematic release.
This version of panda3d-interrogate might be problematic. Click here for more details.
- interrogate/__init__.py +14 -0
- interrogate/__main__.py +3 -0
- interrogate/interrogate.exe +0 -0
- interrogate_module/__init__.py +14 -0
- interrogate_module/__main__.py +3 -0
- interrogate_module/interrogate_module.exe +0 -0
- interrogatedb/interrogatedb.pyd +0 -0
- panda3d_interrogate-0.1.0.dist-info/METADATA +99 -0
- panda3d_interrogate-0.1.0.dist-info/RECORD +12 -0
- panda3d_interrogate-0.1.0.dist-info/WHEEL +5 -0
- panda3d_interrogate-0.1.0.dist-info/entry_points.txt +4 -0
- panda3d_interrogate-0.1.0.dist-info/licenses/LICENSE +30 -0
interrogate/__init__.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import os
|
|
2
|
+
import subprocess
|
|
3
|
+
import sys
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def _get_executable(name):
|
|
7
|
+
return os.path.join(os.path.dirname(__file__), name)
|
|
8
|
+
|
|
9
|
+
def _run(name):
|
|
10
|
+
executable = _get_executable(name)
|
|
11
|
+
return subprocess.call([executable] + sys.argv[1:])
|
|
12
|
+
|
|
13
|
+
def main():
|
|
14
|
+
raise SystemExit(_run("interrogate"))
|
interrogate/__main__.py
ADDED
|
Binary file
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import os
|
|
2
|
+
import subprocess
|
|
3
|
+
import sys
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def _get_executable(name):
|
|
7
|
+
return os.path.join(os.path.dirname(__file__), name)
|
|
8
|
+
|
|
9
|
+
def _run(name):
|
|
10
|
+
executable = _get_executable(name)
|
|
11
|
+
return subprocess.call([executable] + sys.argv[1:])
|
|
12
|
+
|
|
13
|
+
def main():
|
|
14
|
+
raise SystemExit(_run("interrogate_module"))
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: panda3d-interrogate
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Binding generator designed for Panda3D
|
|
5
|
+
License: Copyright (c) 2008, Carnegie Mellon University.
|
|
6
|
+
All rights reserved.
|
|
7
|
+
|
|
8
|
+
Redistribution and use in source and binary forms, with or without
|
|
9
|
+
modification, are permitted provided that the following conditions
|
|
10
|
+
are met:
|
|
11
|
+
|
|
12
|
+
1. Redistributions of source code must retain the above copyright
|
|
13
|
+
notice, this list of conditions and the following disclaimer.
|
|
14
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
15
|
+
notice, this list of conditions and the following disclaimer in the
|
|
16
|
+
documentation and/or other materials provided with the distribution.
|
|
17
|
+
3. Neither the name of Carnegie Mellon University nor the names of
|
|
18
|
+
other contributors may be used to endorse or promote products
|
|
19
|
+
derived from this software without specific prior written
|
|
20
|
+
permission.
|
|
21
|
+
|
|
22
|
+
THIS SOFTWARE IS PROVIDED BY THE AUTHORS "AS IS" AND ANY EXPRESS OR
|
|
23
|
+
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
24
|
+
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
25
|
+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
26
|
+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
27
|
+
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
28
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
29
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
30
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
31
|
+
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
32
|
+
|
|
33
|
+
(This is the Modified BSD License. See also
|
|
34
|
+
http://www.opensource.org/licenses/bsd-license.php )
|
|
35
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
36
|
+
Classifier: Intended Audience :: Developers
|
|
37
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
38
|
+
Classifier: Operating System :: OS Independent
|
|
39
|
+
Classifier: Programming Language :: C++
|
|
40
|
+
Project-URL: Source, https://github.com/panda3d/interrogate
|
|
41
|
+
Project-URL: Tracker, https://github.com/panda3d/interrogate/issues
|
|
42
|
+
Project-URL: Funding, https://opencollective.com/panda3d
|
|
43
|
+
Requires-Python: >=3.2
|
|
44
|
+
Description-Content-Type: text/markdown
|
|
45
|
+
|
|
46
|
+
interrogate
|
|
47
|
+
===========
|
|
48
|
+
|
|
49
|
+
<img src="https://avatars2.githubusercontent.com/u/590956?v=3&s=500" align="right" width="200" />
|
|
50
|
+
|
|
51
|
+
Interrogate is a binding generator for Python and other scripting languages.
|
|
52
|
+
It was designed for use with the [Panda3D](https://www.panda3d.org/) game
|
|
53
|
+
engine, but can be used for other libraries. It was recently split out of the
|
|
54
|
+
[Panda3D codebase](https://github.com/panda3d/panda3d), and work is ongoing to
|
|
55
|
+
refactor the code and make it more independent.
|
|
56
|
+
|
|
57
|
+
Interrogate consists of the following components:
|
|
58
|
+
|
|
59
|
+
- A library for C++ parsing.
|
|
60
|
+
- Stub headers necessary for efficiently parsing code that uses the C++
|
|
61
|
+
standard library and other popular thirdparty libraries.
|
|
62
|
+
- The interrogate command-line tool, which parses the given set of C++ files
|
|
63
|
+
and outputs Python and/or C bindings.
|
|
64
|
+
- The interrogatedb library, which can be used to parse the .idb files that
|
|
65
|
+
may be generated by the above tool. These can be used to generate
|
|
66
|
+
documentation files.
|
|
67
|
+
- Python bindings for the interrogatedb library.
|
|
68
|
+
|
|
69
|
+
Interrogate is licensed under the Modified BSD License. See the LICENSE file
|
|
70
|
+
for more details.
|
|
71
|
+
|
|
72
|
+
Back-ends
|
|
73
|
+
---------
|
|
74
|
+
|
|
75
|
+
The following back-ends are currently implemented:
|
|
76
|
+
|
|
77
|
+
- `-c`: generate C wrapper functions for use with an FFI.
|
|
78
|
+
- `-python`: the "simple" Python back-end, supporting basic functions.
|
|
79
|
+
Supports the stable Python API.
|
|
80
|
+
- `-python-obj`: a version of the above back-end with object support.
|
|
81
|
+
- `-python-native`: a very powerful back-end with an exhaustive feature list,
|
|
82
|
+
however, the resulting binaries currently depend on Panda3D.
|
|
83
|
+
|
|
84
|
+
Reporting Issues
|
|
85
|
+
----------------
|
|
86
|
+
|
|
87
|
+
If you encounter any bugs when using Interrogate, please report them in the
|
|
88
|
+
bug tracker. This is hosted at:
|
|
89
|
+
|
|
90
|
+
https://github.com/panda3d/interrogate/issues
|
|
91
|
+
|
|
92
|
+
Make sure to first use the search function to see if the bug has already been
|
|
93
|
+
reported. When filling out a bug report, make sure that you include as much
|
|
94
|
+
information as possible to help the developers track down the issue, such as
|
|
95
|
+
your version of interrogate, operating system, architecture, and any code and
|
|
96
|
+
models that are necessary for the developers to reproduce the issue.
|
|
97
|
+
|
|
98
|
+
If you're not sure whether you've encountered a bug, feel free to ask about
|
|
99
|
+
it in the forums or the IRC channel first.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
interrogate/__init__.py,sha256=VzohLdBAC9ORtq2N_bWQAsKJHRuep2WPRt0fuLdmrH4,306
|
|
2
|
+
interrogate/__main__.py,sha256=BoPTbMEp34I3wKK2a4hxXHNu9j0DGZLoXmIC9-jSQvA,30
|
|
3
|
+
interrogate/interrogate.exe,sha256=TfAxtQMrVjN2XZ8p7s_nPx7eYTlHebPaYZBH50msxOI,1112064
|
|
4
|
+
interrogate_module/__init__.py,sha256=ZPBznESsGO6OQ-B4jYg8MIICRKlQaj-qZXRHR5p8zCc,313
|
|
5
|
+
interrogate_module/__main__.py,sha256=BoPTbMEp34I3wKK2a4hxXHNu9j0DGZLoXmIC9-jSQvA,30
|
|
6
|
+
interrogate_module/interrogate_module.exe,sha256=MeDUTn_pynqufSAbHp91lIcCQi1WBN6dyV_kgi70vg0,286720
|
|
7
|
+
interrogatedb/interrogatedb.pyd,sha256=X8XrMMs1rSg9sTHHXWstI2ZKv95gU2lPQVIVnI_DJTw,189952
|
|
8
|
+
panda3d_interrogate-0.1.0.dist-info/METADATA,sha256=KDE7GPorIFJZq9oxBO5SngjqcmpcxyIDvAKa1ZW17_w,4674
|
|
9
|
+
panda3d_interrogate-0.1.0.dist-info/WHEEL,sha256=IcCxfz-r_QBooUFH_X_cLpf7XZqmCOdFSaNjLBx-ci8,104
|
|
10
|
+
panda3d_interrogate-0.1.0.dist-info/entry_points.txt,sha256=bQA3lpVU1O8qEmSyPUyqveRNLI0hbBOtWgZunhRxAPs,95
|
|
11
|
+
panda3d_interrogate-0.1.0.dist-info/licenses/LICENSE,sha256=TxuQXxtdWPa6LMitGwk6j0p9LcZvWwCS54ubcIvn6ls,1599
|
|
12
|
+
panda3d_interrogate-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Copyright (c) 2008, Carnegie Mellon University.
|
|
2
|
+
All rights reserved.
|
|
3
|
+
|
|
4
|
+
Redistribution and use in source and binary forms, with or without
|
|
5
|
+
modification, are permitted provided that the following conditions
|
|
6
|
+
are met:
|
|
7
|
+
|
|
8
|
+
1. Redistributions of source code must retain the above copyright
|
|
9
|
+
notice, this list of conditions and the following disclaimer.
|
|
10
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
11
|
+
notice, this list of conditions and the following disclaimer in the
|
|
12
|
+
documentation and/or other materials provided with the distribution.
|
|
13
|
+
3. Neither the name of Carnegie Mellon University nor the names of
|
|
14
|
+
other contributors may be used to endorse or promote products
|
|
15
|
+
derived from this software without specific prior written
|
|
16
|
+
permission.
|
|
17
|
+
|
|
18
|
+
THIS SOFTWARE IS PROVIDED BY THE AUTHORS "AS IS" AND ANY EXPRESS OR
|
|
19
|
+
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
20
|
+
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
21
|
+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
22
|
+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
23
|
+
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
24
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
25
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
26
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
27
|
+
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
28
|
+
|
|
29
|
+
(This is the Modified BSD License. See also
|
|
30
|
+
http://www.opensource.org/licenses/bsd-license.php )
|