platform for raspberry pi
This commit is contained in:
commit
73d4832b38
523 changed files with 190349 additions and 0 deletions
|
|
@ -0,0 +1,31 @@
|
|||
Metadata-Version: 1.1
|
||||
Name: cffi
|
||||
Version: 1.7.0
|
||||
Summary: Foreign Function Interface for Python calling C code.
|
||||
Home-page: http://cffi.readthedocs.org
|
||||
Author: Armin Rigo, Maciej Fijalkowski
|
||||
Author-email: python-cffi@googlegroups.com
|
||||
License: MIT
|
||||
Description:
|
||||
CFFI
|
||||
====
|
||||
|
||||
Foreign Function Interface for Python calling C code.
|
||||
Please see the `Documentation <http://cffi.readthedocs.org/>`_.
|
||||
|
||||
Contact
|
||||
-------
|
||||
|
||||
`Mailing list <https://groups.google.com/forum/#!forum/python-cffi>`_
|
||||
|
||||
Platform: UNKNOWN
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 2
|
||||
Classifier: Programming Language :: Python :: 2.6
|
||||
Classifier: Programming Language :: Python :: 2.7
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3.2
|
||||
Classifier: Programming Language :: Python :: 3.3
|
||||
Classifier: Programming Language :: Python :: 3.4
|
||||
Classifier: Programming Language :: Python :: Implementation :: CPython
|
||||
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
||||
|
|
@ -0,0 +1,180 @@
|
|||
AUTHORS
|
||||
LICENSE
|
||||
MANIFEST.in
|
||||
setup.cfg
|
||||
setup.py
|
||||
setup_base.py
|
||||
c/_cffi_backend.c
|
||||
c/call_python.c
|
||||
c/cdlopen.c
|
||||
c/cffi1_module.c
|
||||
c/cglob.c
|
||||
c/commontypes.c
|
||||
c/ffi_obj.c
|
||||
c/file_emulator.h
|
||||
c/lib_obj.c
|
||||
c/malloc_closure.h
|
||||
c/minibuffer.h
|
||||
c/misc_thread_common.h
|
||||
c/misc_thread_posix.h
|
||||
c/misc_win32.h
|
||||
c/parse_c_type.c
|
||||
c/realize_c_type.c
|
||||
c/test_c.py
|
||||
c/wchar_helper.h
|
||||
c/libffi_msvc/ffi.c
|
||||
c/libffi_msvc/ffi.h
|
||||
c/libffi_msvc/ffi_common.h
|
||||
c/libffi_msvc/fficonfig.h
|
||||
c/libffi_msvc/ffitarget.h
|
||||
c/libffi_msvc/prep_cif.c
|
||||
c/libffi_msvc/types.c
|
||||
c/libffi_msvc/win32.c
|
||||
c/libffi_msvc/win64.asm
|
||||
c/libffi_msvc/win64.obj
|
||||
cffi/__init__.py
|
||||
cffi/_cffi_include.h
|
||||
cffi/_embedding.h
|
||||
cffi/api.py
|
||||
cffi/backend_ctypes.py
|
||||
cffi/cffi_opcode.py
|
||||
cffi/commontypes.py
|
||||
cffi/cparser.py
|
||||
cffi/ffiplatform.py
|
||||
cffi/lock.py
|
||||
cffi/model.py
|
||||
cffi/parse_c_type.h
|
||||
cffi/recompiler.py
|
||||
cffi/setuptools_ext.py
|
||||
cffi/vengine_cpy.py
|
||||
cffi/vengine_gen.py
|
||||
cffi/verifier.py
|
||||
cffi.egg-info/PKG-INFO
|
||||
cffi.egg-info/SOURCES.txt
|
||||
cffi.egg-info/dependency_links.txt
|
||||
cffi.egg-info/entry_points.txt
|
||||
cffi.egg-info/not-zip-safe
|
||||
cffi.egg-info/requires.txt
|
||||
cffi.egg-info/top_level.txt
|
||||
demo/_curses.py
|
||||
demo/_curses_build.py
|
||||
demo/_curses_setup.py
|
||||
demo/api.py
|
||||
demo/bsdopendirtype.py
|
||||
demo/bsdopendirtype_build.py
|
||||
demo/bsdopendirtype_setup.py
|
||||
demo/btrfs-snap.py
|
||||
demo/cffi-cocoa.py
|
||||
demo/embedding.py
|
||||
demo/embedding_test.c
|
||||
demo/extern_python.py
|
||||
demo/extern_python_varargs.py
|
||||
demo/fastcsv.py
|
||||
demo/gmp.py
|
||||
demo/gmp_build.py
|
||||
demo/manual.c
|
||||
demo/manual2.py
|
||||
demo/pwuid.py
|
||||
demo/pwuid_build.py
|
||||
demo/py.cleanup
|
||||
demo/pyobj.py
|
||||
demo/readdir.py
|
||||
demo/readdir2.py
|
||||
demo/readdir2_build.py
|
||||
demo/readdir2_setup.py
|
||||
demo/readdir_build.py
|
||||
demo/readdir_ctypes.py
|
||||
demo/readdir_setup.py
|
||||
demo/recopendirtype.py
|
||||
demo/recopendirtype_build.py
|
||||
demo/setup_manual.py
|
||||
demo/winclipboard.py
|
||||
demo/winclipboard_build.py
|
||||
demo/xclient.py
|
||||
demo/xclient_build.py
|
||||
doc/Makefile
|
||||
doc/make.bat
|
||||
doc/misc/design.rst
|
||||
doc/misc/grant-cffi-1.0.rst
|
||||
doc/misc/parse_c_type.rst
|
||||
doc/source/cdef.rst
|
||||
doc/source/conf.py
|
||||
doc/source/embedding.rst
|
||||
doc/source/index.rst
|
||||
doc/source/installation.rst
|
||||
doc/source/overview.rst
|
||||
doc/source/ref.rst
|
||||
doc/source/using.rst
|
||||
doc/source/whatsnew.rst
|
||||
testing/__init__.py
|
||||
testing/support.py
|
||||
testing/udir.py
|
||||
testing/cffi0/__init__.py
|
||||
testing/cffi0/backend_tests.py
|
||||
testing/cffi0/callback_in_thread.py
|
||||
testing/cffi0/test_cdata.py
|
||||
testing/cffi0/test_ctypes.py
|
||||
testing/cffi0/test_ffi_backend.py
|
||||
testing/cffi0/test_function.py
|
||||
testing/cffi0/test_model.py
|
||||
testing/cffi0/test_ownlib.py
|
||||
testing/cffi0/test_parsing.py
|
||||
testing/cffi0/test_platform.py
|
||||
testing/cffi0/test_unicode_literals.py
|
||||
testing/cffi0/test_verify.py
|
||||
testing/cffi0/test_verify2.py
|
||||
testing/cffi0/test_version.py
|
||||
testing/cffi0/test_vgen.py
|
||||
testing/cffi0/test_vgen2.py
|
||||
testing/cffi0/test_zdistutils.py
|
||||
testing/cffi0/test_zintegration.py
|
||||
testing/cffi0/snippets/distutils_module/setup.py
|
||||
testing/cffi0/snippets/distutils_module/snip_basic_verify.py
|
||||
testing/cffi0/snippets/distutils_package_1/setup.py
|
||||
testing/cffi0/snippets/distutils_package_1/snip_basic_verify1/__init__.py
|
||||
testing/cffi0/snippets/distutils_package_2/setup.py
|
||||
testing/cffi0/snippets/distutils_package_2/snip_basic_verify2/__init__.py
|
||||
testing/cffi0/snippets/infrastructure/setup.py
|
||||
testing/cffi0/snippets/infrastructure/snip_infrastructure/__init__.py
|
||||
testing/cffi0/snippets/setuptools_module/setup.py
|
||||
testing/cffi0/snippets/setuptools_module/snip_setuptools_verify.py
|
||||
testing/cffi0/snippets/setuptools_package_1/setup.py
|
||||
testing/cffi0/snippets/setuptools_package_1/snip_setuptools_verify1/__init__.py
|
||||
testing/cffi0/snippets/setuptools_package_2/setup.py
|
||||
testing/cffi0/snippets/setuptools_package_2/snip_setuptools_verify2/__init__.py
|
||||
testing/cffi1/__init__.py
|
||||
testing/cffi1/test_cffi_binary.py
|
||||
testing/cffi1/test_commontypes.py
|
||||
testing/cffi1/test_dlopen.py
|
||||
testing/cffi1/test_dlopen_unicode_literals.py
|
||||
testing/cffi1/test_ffi_obj.py
|
||||
testing/cffi1/test_new_ffi_1.py
|
||||
testing/cffi1/test_parse_c_type.py
|
||||
testing/cffi1/test_re_python.py
|
||||
testing/cffi1/test_realize_c_type.py
|
||||
testing/cffi1/test_recompiler.py
|
||||
testing/cffi1/test_unicode_literals.py
|
||||
testing/cffi1/test_verify1.py
|
||||
testing/cffi1/test_zdist.py
|
||||
testing/embedding/__init__.py
|
||||
testing/embedding/add1-test.c
|
||||
testing/embedding/add1.py
|
||||
testing/embedding/add2-test.c
|
||||
testing/embedding/add2.py
|
||||
testing/embedding/add3.py
|
||||
testing/embedding/add_recursive-test.c
|
||||
testing/embedding/add_recursive.py
|
||||
testing/embedding/empty.py
|
||||
testing/embedding/perf-test.c
|
||||
testing/embedding/perf.py
|
||||
testing/embedding/test_basic.py
|
||||
testing/embedding/test_performance.py
|
||||
testing/embedding/test_recursive.py
|
||||
testing/embedding/test_thread.py
|
||||
testing/embedding/test_tlocal.py
|
||||
testing/embedding/thread-test.h
|
||||
testing/embedding/thread1-test.c
|
||||
testing/embedding/thread2-test.c
|
||||
testing/embedding/thread3-test.c
|
||||
testing/embedding/tlocal-test.c
|
||||
testing/embedding/tlocal.py
|
||||
|
|
@ -0,0 +1 @@
|
|||
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
[distutils.setup_keywords]
|
||||
cffi_modules = cffi.setuptools_ext:cffi_modules
|
||||
|
||||
|
|
@ -0,0 +1,40 @@
|
|||
../cffi/vengine_cpy.py
|
||||
../cffi/backend_ctypes.py
|
||||
../cffi/lock.py
|
||||
../cffi/model.py
|
||||
../cffi/cparser.py
|
||||
../cffi/commontypes.py
|
||||
../cffi/__init__.py
|
||||
../cffi/recompiler.py
|
||||
../cffi/ffiplatform.py
|
||||
../cffi/verifier.py
|
||||
../cffi/vengine_gen.py
|
||||
../cffi/cffi_opcode.py
|
||||
../cffi/setuptools_ext.py
|
||||
../cffi/api.py
|
||||
../cffi/_cffi_include.h
|
||||
../cffi/parse_c_type.h
|
||||
../cffi/_embedding.h
|
||||
../cffi/__pycache__/vengine_cpy.cpython-34.pyc
|
||||
../cffi/__pycache__/backend_ctypes.cpython-34.pyc
|
||||
../cffi/__pycache__/lock.cpython-34.pyc
|
||||
../cffi/__pycache__/model.cpython-34.pyc
|
||||
../cffi/__pycache__/cparser.cpython-34.pyc
|
||||
../cffi/__pycache__/commontypes.cpython-34.pyc
|
||||
../cffi/__pycache__/__init__.cpython-34.pyc
|
||||
../cffi/__pycache__/recompiler.cpython-34.pyc
|
||||
../cffi/__pycache__/ffiplatform.cpython-34.pyc
|
||||
../cffi/__pycache__/verifier.cpython-34.pyc
|
||||
../cffi/__pycache__/vengine_gen.cpython-34.pyc
|
||||
../cffi/__pycache__/cffi_opcode.cpython-34.pyc
|
||||
../cffi/__pycache__/setuptools_ext.cpython-34.pyc
|
||||
../cffi/__pycache__/api.cpython-34.pyc
|
||||
../_cffi_backend.cpython-34m.so
|
||||
./
|
||||
PKG-INFO
|
||||
requires.txt
|
||||
not-zip-safe
|
||||
dependency_links.txt
|
||||
SOURCES.txt
|
||||
top_level.txt
|
||||
entry_points.txt
|
||||
|
|
@ -0,0 +1 @@
|
|||
|
||||
|
|
@ -0,0 +1 @@
|
|||
pycparser
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
_cffi_backend
|
||||
cffi
|
||||
Loading…
Add table
Add a link
Reference in a new issue