├── .coveragerc ├── .travis-make-py24-virtualenv.sh ├── .travis.yml ├── INSTALL ├── LICENSE.txt ├── PACKAGERS.txt ├── README.rst ├── TESTING.txt ├── THANKS ├── bento.info ├── bento ├── __init__.py ├── __package_info.py.in ├── _config.py ├── backends │ ├── __init__.py │ ├── core.py │ ├── distutils_backend.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_distutils.py │ │ └── test_utils.py │ ├── utils.py │ ├── waf_backend.py │ ├── waf_tools │ │ ├── __init__.py │ │ ├── arch.py │ │ ├── blas_lapack.py │ │ ├── custom_python.py │ │ ├── cython.py │ │ ├── f2py.py │ │ ├── interface_gen.py │ │ └── ordered_c.py │ └── yaku_backend.py ├── commands │ ├── __init__.py │ ├── build.py │ ├── build_distutils.py │ ├── build_egg.py │ ├── build_mpkg.py │ ├── build_msi.py │ ├── build_pkg_info.py │ ├── build_wininst.py │ ├── build_yaku.py │ ├── cli.exe │ ├── command_contexts.py │ ├── configure.py │ ├── contexts.py │ ├── core.py │ ├── dependency.py │ ├── egg_utils.py │ ├── hooks.py │ ├── install.py │ ├── mpkg_utils.py │ ├── msi_utils.py │ ├── options.py │ ├── parse.py │ ├── register.py │ ├── registries.py │ ├── script_utils.py │ ├── sdist.py │ ├── sphinx_command.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_build.py │ │ ├── test_command_contexts.py │ │ ├── test_configure.py │ │ ├── test_contexts.py │ │ ├── test_core.py │ │ ├── test_dependency.py │ │ ├── test_egg.py │ │ ├── test_hooks.py │ │ ├── test_install.py │ │ ├── test_misc.py │ │ ├── test_recursive.py │ │ ├── test_script_utils.py │ │ ├── test_sdist.py │ │ ├── test_sphinx.py │ │ ├── test_sub_directory.py │ │ ├── test_utils.py │ │ ├── test_wininst.py │ │ ├── test_wininst_utils.py │ │ └── utils.py │ ├── upload.py │ ├── utils.py │ ├── wininst │ │ ├── wininst-7.1.exe │ │ ├── wininst-8.0.exe │ │ ├── wininst-9.0-amd64.exe │ │ └── wininst-9.0.exe │ ├── wininst_utils.py │ └── wrapper_utils.py ├── compat │ ├── __init__.py │ ├── __tarfile_c.py │ ├── _collections.py │ ├── _functools.py │ ├── _subprocess.py │ ├── _tempfile.py │ ├── _zipfile.py │ ├── api.py │ ├── dist.py │ ├── inspect.py │ ├── misc.py │ ├── nt_path.py │ ├── posix_path.py │ ├── rename.py │ └── tests │ │ ├── __init__.py │ │ └── test_tempfile.py ├── conv.py ├── convert │ ├── __init__.py │ ├── commands.py │ ├── core.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_convert.py │ │ ├── test_convert_command.py │ │ └── test_utils.py │ └── utils.py ├── core │ ├── __init__.py │ ├── _nose_compat.py │ ├── meta.py │ ├── node.py │ ├── node_package.py │ ├── options.py │ ├── package.py │ ├── parse_helpers.py │ ├── pkg_objects.py │ ├── platforms │ │ ├── __init__.py │ │ └── sysconfig.py │ ├── subpackage.py │ ├── testing.py │ └── tests │ │ ├── __init__.py │ │ ├── test_node.py │ │ ├── test_node_representation.py │ │ ├── test_package.py │ │ ├── test_pkg_objects.py │ │ └── test_subpackage.py ├── distutils │ ├── __init__.py │ ├── commands │ │ ├── __init__.py │ │ ├── bdist_egg.py │ │ ├── build.py │ │ ├── config.py │ │ ├── egg_info.py │ │ ├── install.py │ │ └── sdist.py │ ├── dist.py │ ├── monkey_patch.py │ ├── tests │ │ ├── __init__.py │ │ ├── common.py │ │ ├── test_build.py │ │ ├── test_egg_info.py │ │ ├── test_install.py │ │ └── test_sdist.py │ └── utils.py ├── errors.py ├── installed_package_description.py ├── parser │ ├── __init__.py │ ├── lexer.py │ ├── misc.py │ ├── nodes.py │ ├── parser.py │ ├── rules.py │ ├── tests │ │ ├── __init__.py │ │ ├── functionals │ │ │ ├── __init__.py │ │ │ ├── data_distribute.py │ │ │ ├── data_jinja2.py │ │ │ ├── data_sphinx.py │ │ │ ├── distribute.info │ │ │ ├── generate.py │ │ │ ├── jinja2.info │ │ │ ├── sphinx.info │ │ │ └── test.py │ │ ├── pkgdescr │ │ │ └── simple_package.py │ │ ├── test_lexer.py │ │ ├── test_parser.py │ │ ├── test_parsing.py │ │ └── test_visitor.py │ ├── utils.py │ └── visitor.py ├── private │ ├── __init__.py │ ├── _bytecode_2.py │ ├── _bytecode_3.py │ ├── _ply │ │ └── ply │ │ │ ├── __init__.py │ │ │ ├── lex.py │ │ │ └── yacc.py │ ├── _simplejson │ │ └── simplejson │ │ │ ├── __init__.py │ │ │ ├── decoder.py │ │ │ ├── encoder.py │ │ │ ├── ordered_dict.py │ │ │ ├── scanner.py │ │ │ └── tool.py │ ├── _six │ │ └── six.py │ ├── _yaku │ │ ├── MANIFEST.in │ │ ├── NOTES │ │ ├── README │ │ ├── examples │ │ │ ├── 2to3 │ │ │ │ ├── example.py │ │ │ │ └── foo │ │ │ │ │ └── __init__.py │ │ │ ├── c │ │ │ │ ├── example.py │ │ │ │ ├── src │ │ │ │ │ ├── bar.c │ │ │ │ │ └── main.cxx │ │ │ │ └── try_example.py │ │ │ ├── chaining │ │ │ │ ├── build.py │ │ │ │ └── hello.pyx.in │ │ │ ├── conf_example.py │ │ │ ├── example4.py │ │ │ ├── example5.py │ │ │ ├── file_hook.py │ │ │ ├── fortran │ │ │ │ ├── conf_fortran.py │ │ │ │ ├── fortran.py │ │ │ │ └── src │ │ │ │ │ ├── bar.c │ │ │ │ │ ├── bar.cxx │ │ │ │ │ └── bar.f │ │ │ ├── node_example.py │ │ │ ├── numpytest.py │ │ │ ├── override_ext.py │ │ │ ├── pyext_example.py │ │ │ ├── src │ │ │ │ ├── bar.f │ │ │ │ ├── bar.pyx │ │ │ │ ├── foo.c │ │ │ │ ├── foo.h.in │ │ │ │ ├── fubar.c │ │ │ │ ├── hellomodule.c │ │ │ │ ├── main.c │ │ │ │ ├── main2.c │ │ │ │ ├── main3.c │ │ │ │ ├── vonmises_cython.pyx │ │ │ │ └── yo.i │ │ │ ├── subst_tool │ │ │ │ ├── example.py │ │ │ │ └── foo.ini.in │ │ │ ├── task_precedence.py │ │ │ └── test_env.py │ │ ├── setup.py │ │ ├── test.sh │ │ ├── tools │ │ │ └── py3tool.py │ │ └── yaku │ │ │ ├── __init__.py │ │ │ ├── _config.py │ │ │ ├── _utils_py2.py │ │ │ ├── _utils_py3.py │ │ │ ├── build_context.py │ │ │ ├── compat │ │ │ ├── __init__.py │ │ │ ├── py3k.py │ │ │ └── rename.py │ │ │ ├── compiled_fun.py │ │ │ ├── conf.py │ │ │ ├── conftests │ │ │ ├── __init__.py │ │ │ ├── conftests.py │ │ │ ├── fconftests.py │ │ │ └── fconftests_imp.py │ │ │ ├── context.py │ │ │ ├── environment.py │ │ │ ├── errors.py │ │ │ ├── node.py │ │ │ ├── pprint.py │ │ │ ├── scheduler.py │ │ │ ├── sysconfig.py │ │ │ ├── task.py │ │ │ ├── task_manager.py │ │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_basic.py │ │ │ └── test_helpers.py │ │ │ ├── tools │ │ │ ├── __init__.py │ │ │ ├── ar.py │ │ │ ├── cc.py │ │ │ ├── clang.py │ │ │ ├── ctasks.py │ │ │ ├── cxxtasks.py │ │ │ ├── cython.py │ │ │ ├── fortran.py │ │ │ ├── g77.py │ │ │ ├── gcc.py │ │ │ ├── gfortran.py │ │ │ ├── gxx.py │ │ │ ├── ifort.py │ │ │ ├── mscommon │ │ │ │ ├── __init__.py │ │ │ │ └── common.py │ │ │ ├── msvc.py │ │ │ ├── pyext.py │ │ │ ├── python_2to3.py │ │ │ ├── swig.py │ │ │ └── template.py │ │ │ └── utils.py │ ├── bytecode.py │ └── version.py ├── pypi │ ├── __init__.py │ ├── register_utils.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_register_utils.py │ │ └── test_upload.py │ └── upload_utils.py ├── testing │ ├── __init__.py │ ├── bentos │ │ ├── __init__.py │ │ └── sphinx_meta.info │ ├── decorators.py │ ├── misc.py │ └── sub_test_case.py ├── tests │ ├── __init__.py │ ├── test_build_manifest.py │ └── test_misc.py ├── utils │ ├── __init__.py │ ├── io2.py │ ├── os2.py │ ├── path.py │ ├── tests │ │ ├── __init__.py │ │ └── test_utils.py │ └── utils.py └── warnings.py ├── bentomakerlib ├── __init__.py ├── bentomaker.py ├── help.py ├── package_cache.py └── tests │ ├── __init__.py │ └── test_bentomaker.py ├── bootstrap.py ├── bscript ├── check_examples.py ├── config.ini ├── coveragerc.template ├── dev_requirements.txt ├── dev_requirements26.txt ├── doc ├── Makefile ├── main_page │ ├── chunkfive.css │ ├── index.css │ ├── index.html │ └── reset.css ├── make.bat ├── misc │ ├── autoconf_paths.rst │ ├── egg_format.txt │ ├── installed_descr.txt │ ├── old_doc.rst │ └── syntax.rst └── source │ ├── .static │ └── .gitempty │ ├── .templates │ ├── .gitempty │ ├── index.html │ ├── indexsidebar.html │ └── layout.html │ ├── TODO.rst │ ├── conf.py │ ├── contents.rst │ ├── contribute.rst │ ├── devnotes.rst │ ├── faq.rst │ ├── features.rst │ ├── guides.rst │ ├── hacking.rst │ ├── install.rst │ ├── overview.rst │ ├── reference │ ├── bento_format.rst │ ├── bentomaker.rst │ ├── index.rst │ └── mpkg.rst │ ├── singlefile.rst │ ├── transition.rst │ ├── tutorial.rst │ └── version.rst ├── doc_requirements.txt ├── examples ├── build_customization │ ├── bento.info │ ├── bscript │ ├── include │ │ └── common.h │ ├── src │ │ ├── foo.c │ │ ├── foolib.c │ │ └── hellomodule.c │ └── top_module │ │ ├── bento.info │ │ ├── bscript │ │ ├── foomodule.c │ │ └── sub_module │ │ ├── bento.info │ │ ├── bscript │ │ └── foomodule.c ├── customizations │ └── new_builder │ │ ├── bento.info │ │ ├── bscript │ │ ├── foo.1 │ │ ├── hello │ │ ├── __init__.py │ │ └── bar.py │ │ └── src │ │ ├── hellolib.c │ │ └── hellomodule.c ├── hooks │ ├── customization │ │ ├── bento.info │ │ ├── bscript │ │ └── src │ │ │ ├── heap.pxd │ │ │ ├── heap.pyx │ │ │ └── hellomodule.c │ ├── distutils │ │ ├── README │ │ ├── bento.info │ │ └── src │ │ │ └── hellomodule.c │ └── simple │ │ ├── bento.info │ │ └── bscript ├── recursive │ ├── deep │ │ ├── bento.info │ │ ├── bscript │ │ ├── foo │ │ │ ├── __init__.py │ │ │ ├── bar1 │ │ │ │ ├── __init__.py │ │ │ │ ├── bento.info │ │ │ │ └── bscript │ │ │ ├── bar2 │ │ │ │ ├── __init__.py │ │ │ │ ├── bento.info │ │ │ │ ├── bscript │ │ │ │ ├── fubar │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bento.info │ │ │ │ │ ├── bscript │ │ │ │ │ └── src │ │ │ │ │ │ └── hellomodule.c │ │ │ │ └── src │ │ │ │ │ └── foo.c │ │ │ ├── bar3 │ │ │ │ └── __init__.py │ │ │ ├── bento.info │ │ │ ├── bscript │ │ │ └── src │ │ │ │ └── hellomodule.c │ │ └── src │ │ │ └── hellomodule.c │ └── simple │ │ ├── bar │ │ ├── bento.info │ │ ├── bscript │ │ ├── src │ │ │ └── hellomodule.c │ │ ├── subar1 │ │ │ └── __init__.py │ │ └── subar2 │ │ │ └── __init__.py │ │ ├── bento.info │ │ ├── bscript │ │ ├── foo │ │ ├── bento.info │ │ ├── bscript │ │ └── src │ │ │ └── hellomodule.c │ │ └── src │ │ └── hellomodule.c ├── simples │ ├── conditional │ │ ├── bento.info │ │ ├── hello │ │ │ ├── __init__.py │ │ │ └── bar.py │ │ ├── src │ │ │ ├── hellomodule.c │ │ │ └── linbackend.c │ │ └── toytodist.py │ ├── config_py │ │ ├── bento.info │ │ ├── config_py │ │ │ └── __init__.py │ │ └── data │ │ │ └── foo.stat │ ├── datafiles │ │ ├── bento.info │ │ ├── data │ │ │ ├── data1.dat │ │ │ ├── data2.dat │ │ │ └── foo.src │ │ ├── doc │ │ │ ├── foo.1 │ │ │ └── foo.3 │ │ ├── hello │ │ │ └── __init__.py │ │ └── toytodist.py │ ├── executable │ │ ├── bento.info │ │ ├── foo │ │ │ ├── __init__.py │ │ │ └── commands.py │ │ └── setup.py │ ├── single_extension │ │ ├── bento.info │ │ ├── bscript │ │ ├── hello │ │ │ ├── __init__.py │ │ │ └── bar.py │ │ ├── setup.py │ │ ├── src │ │ │ ├── hellolib.c │ │ │ └── hellomodule.c │ │ └── toytodist.py │ ├── single_extension_waf │ │ ├── bento.info │ │ ├── hello │ │ │ ├── __init__.py │ │ │ └── bar.py │ │ └── src │ │ │ └── hellomodule.c │ ├── single_module │ │ ├── bento.info │ │ ├── foo.py │ │ ├── setup.py │ │ └── toytodist.py │ └── single_package │ │ ├── bento.info │ │ ├── foo │ │ ├── __init__.py │ │ └── bar.py │ │ ├── setup.py │ │ └── toytodist.py └── var_example │ ├── _foo.c │ └── bento.info ├── run_coverage.sh ├── sandbox ├── egg2wininst.py └── wininst2egg.py ├── setup.py ├── test_pyversion.sh ├── tools ├── bentomaker.in └── singledist.py ├── tox.ini └── update_gh.sh /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/.coveragerc -------------------------------------------------------------------------------- /.travis-make-py24-virtualenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/.travis-make-py24-virtualenv.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/.travis.yml -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PACKAGERS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/PACKAGERS.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/README.rst -------------------------------------------------------------------------------- /TESTING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/TESTING.txt -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/THANKS -------------------------------------------------------------------------------- /bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento.info -------------------------------------------------------------------------------- /bento/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/__init__.py -------------------------------------------------------------------------------- /bento/__package_info.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/__package_info.py.in -------------------------------------------------------------------------------- /bento/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/_config.py -------------------------------------------------------------------------------- /bento/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/backends/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/backends/core.py -------------------------------------------------------------------------------- /bento/backends/distutils_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/backends/distutils_backend.py -------------------------------------------------------------------------------- /bento/backends/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/backends/tests/test_distutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/backends/tests/test_distutils.py -------------------------------------------------------------------------------- /bento/backends/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/backends/tests/test_utils.py -------------------------------------------------------------------------------- /bento/backends/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/backends/utils.py -------------------------------------------------------------------------------- /bento/backends/waf_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/backends/waf_backend.py -------------------------------------------------------------------------------- /bento/backends/waf_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/backends/waf_tools/arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/backends/waf_tools/arch.py -------------------------------------------------------------------------------- /bento/backends/waf_tools/blas_lapack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/backends/waf_tools/blas_lapack.py -------------------------------------------------------------------------------- /bento/backends/waf_tools/custom_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/backends/waf_tools/custom_python.py -------------------------------------------------------------------------------- /bento/backends/waf_tools/cython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/backends/waf_tools/cython.py -------------------------------------------------------------------------------- /bento/backends/waf_tools/f2py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/backends/waf_tools/f2py.py -------------------------------------------------------------------------------- /bento/backends/waf_tools/interface_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/backends/waf_tools/interface_gen.py -------------------------------------------------------------------------------- /bento/backends/waf_tools/ordered_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/backends/waf_tools/ordered_c.py -------------------------------------------------------------------------------- /bento/backends/yaku_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/backends/yaku_backend.py -------------------------------------------------------------------------------- /bento/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/commands/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/build.py -------------------------------------------------------------------------------- /bento/commands/build_distutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/build_distutils.py -------------------------------------------------------------------------------- /bento/commands/build_egg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/build_egg.py -------------------------------------------------------------------------------- /bento/commands/build_mpkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/build_mpkg.py -------------------------------------------------------------------------------- /bento/commands/build_msi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/build_msi.py -------------------------------------------------------------------------------- /bento/commands/build_pkg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/build_pkg_info.py -------------------------------------------------------------------------------- /bento/commands/build_wininst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/build_wininst.py -------------------------------------------------------------------------------- /bento/commands/build_yaku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/build_yaku.py -------------------------------------------------------------------------------- /bento/commands/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/cli.exe -------------------------------------------------------------------------------- /bento/commands/command_contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/command_contexts.py -------------------------------------------------------------------------------- /bento/commands/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/configure.py -------------------------------------------------------------------------------- /bento/commands/contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/contexts.py -------------------------------------------------------------------------------- /bento/commands/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/core.py -------------------------------------------------------------------------------- /bento/commands/dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/dependency.py -------------------------------------------------------------------------------- /bento/commands/egg_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/egg_utils.py -------------------------------------------------------------------------------- /bento/commands/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/hooks.py -------------------------------------------------------------------------------- /bento/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/install.py -------------------------------------------------------------------------------- /bento/commands/mpkg_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/mpkg_utils.py -------------------------------------------------------------------------------- /bento/commands/msi_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/msi_utils.py -------------------------------------------------------------------------------- /bento/commands/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/options.py -------------------------------------------------------------------------------- /bento/commands/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/parse.py -------------------------------------------------------------------------------- /bento/commands/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/register.py -------------------------------------------------------------------------------- /bento/commands/registries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/registries.py -------------------------------------------------------------------------------- /bento/commands/script_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/script_utils.py -------------------------------------------------------------------------------- /bento/commands/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/sdist.py -------------------------------------------------------------------------------- /bento/commands/sphinx_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/sphinx_command.py -------------------------------------------------------------------------------- /bento/commands/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/commands/tests/test_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/tests/test_build.py -------------------------------------------------------------------------------- /bento/commands/tests/test_command_contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/tests/test_command_contexts.py -------------------------------------------------------------------------------- /bento/commands/tests/test_configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/tests/test_configure.py -------------------------------------------------------------------------------- /bento/commands/tests/test_contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/tests/test_contexts.py -------------------------------------------------------------------------------- /bento/commands/tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/tests/test_core.py -------------------------------------------------------------------------------- /bento/commands/tests/test_dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/tests/test_dependency.py -------------------------------------------------------------------------------- /bento/commands/tests/test_egg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/tests/test_egg.py -------------------------------------------------------------------------------- /bento/commands/tests/test_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/tests/test_hooks.py -------------------------------------------------------------------------------- /bento/commands/tests/test_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/tests/test_install.py -------------------------------------------------------------------------------- /bento/commands/tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/tests/test_misc.py -------------------------------------------------------------------------------- /bento/commands/tests/test_recursive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/tests/test_recursive.py -------------------------------------------------------------------------------- /bento/commands/tests/test_script_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/tests/test_script_utils.py -------------------------------------------------------------------------------- /bento/commands/tests/test_sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/tests/test_sdist.py -------------------------------------------------------------------------------- /bento/commands/tests/test_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/tests/test_sphinx.py -------------------------------------------------------------------------------- /bento/commands/tests/test_sub_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/tests/test_sub_directory.py -------------------------------------------------------------------------------- /bento/commands/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/tests/test_utils.py -------------------------------------------------------------------------------- /bento/commands/tests/test_wininst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/tests/test_wininst.py -------------------------------------------------------------------------------- /bento/commands/tests/test_wininst_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/tests/test_wininst_utils.py -------------------------------------------------------------------------------- /bento/commands/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/tests/utils.py -------------------------------------------------------------------------------- /bento/commands/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/upload.py -------------------------------------------------------------------------------- /bento/commands/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/utils.py -------------------------------------------------------------------------------- /bento/commands/wininst/wininst-7.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/wininst/wininst-7.1.exe -------------------------------------------------------------------------------- /bento/commands/wininst/wininst-8.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/wininst/wininst-8.0.exe -------------------------------------------------------------------------------- /bento/commands/wininst/wininst-9.0-amd64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/wininst/wininst-9.0-amd64.exe -------------------------------------------------------------------------------- /bento/commands/wininst/wininst-9.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/wininst/wininst-9.0.exe -------------------------------------------------------------------------------- /bento/commands/wininst_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/wininst_utils.py -------------------------------------------------------------------------------- /bento/commands/wrapper_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/commands/wrapper_utils.py -------------------------------------------------------------------------------- /bento/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/compat/__tarfile_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/compat/__tarfile_c.py -------------------------------------------------------------------------------- /bento/compat/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/compat/_collections.py -------------------------------------------------------------------------------- /bento/compat/_functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/compat/_functools.py -------------------------------------------------------------------------------- /bento/compat/_subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/compat/_subprocess.py -------------------------------------------------------------------------------- /bento/compat/_tempfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/compat/_tempfile.py -------------------------------------------------------------------------------- /bento/compat/_zipfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/compat/_zipfile.py -------------------------------------------------------------------------------- /bento/compat/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/compat/api.py -------------------------------------------------------------------------------- /bento/compat/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/compat/dist.py -------------------------------------------------------------------------------- /bento/compat/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/compat/inspect.py -------------------------------------------------------------------------------- /bento/compat/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/compat/misc.py -------------------------------------------------------------------------------- /bento/compat/nt_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/compat/nt_path.py -------------------------------------------------------------------------------- /bento/compat/posix_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/compat/posix_path.py -------------------------------------------------------------------------------- /bento/compat/rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/compat/rename.py -------------------------------------------------------------------------------- /bento/compat/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/compat/tests/test_tempfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/compat/tests/test_tempfile.py -------------------------------------------------------------------------------- /bento/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/conv.py -------------------------------------------------------------------------------- /bento/convert/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/convert/__init__.py -------------------------------------------------------------------------------- /bento/convert/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/convert/commands.py -------------------------------------------------------------------------------- /bento/convert/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/convert/core.py -------------------------------------------------------------------------------- /bento/convert/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/convert/tests/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/convert/tests/test_convert.py -------------------------------------------------------------------------------- /bento/convert/tests/test_convert_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/convert/tests/test_convert_command.py -------------------------------------------------------------------------------- /bento/convert/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/convert/tests/test_utils.py -------------------------------------------------------------------------------- /bento/convert/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/convert/utils.py -------------------------------------------------------------------------------- /bento/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/core/__init__.py -------------------------------------------------------------------------------- /bento/core/_nose_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/core/_nose_compat.py -------------------------------------------------------------------------------- /bento/core/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/core/meta.py -------------------------------------------------------------------------------- /bento/core/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/core/node.py -------------------------------------------------------------------------------- /bento/core/node_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/core/node_package.py -------------------------------------------------------------------------------- /bento/core/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/core/options.py -------------------------------------------------------------------------------- /bento/core/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/core/package.py -------------------------------------------------------------------------------- /bento/core/parse_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/core/parse_helpers.py -------------------------------------------------------------------------------- /bento/core/pkg_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/core/pkg_objects.py -------------------------------------------------------------------------------- /bento/core/platforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/core/platforms/__init__.py -------------------------------------------------------------------------------- /bento/core/platforms/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/core/platforms/sysconfig.py -------------------------------------------------------------------------------- /bento/core/subpackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/core/subpackage.py -------------------------------------------------------------------------------- /bento/core/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/core/testing.py -------------------------------------------------------------------------------- /bento/core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/core/tests/test_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/core/tests/test_node.py -------------------------------------------------------------------------------- /bento/core/tests/test_node_representation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/core/tests/test_node_representation.py -------------------------------------------------------------------------------- /bento/core/tests/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/core/tests/test_package.py -------------------------------------------------------------------------------- /bento/core/tests/test_pkg_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/core/tests/test_pkg_objects.py -------------------------------------------------------------------------------- /bento/core/tests/test_subpackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/core/tests/test_subpackage.py -------------------------------------------------------------------------------- /bento/distutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/distutils/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/distutils/commands/bdist_egg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/distutils/commands/bdist_egg.py -------------------------------------------------------------------------------- /bento/distutils/commands/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/distutils/commands/build.py -------------------------------------------------------------------------------- /bento/distutils/commands/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/distutils/commands/config.py -------------------------------------------------------------------------------- /bento/distutils/commands/egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/distutils/commands/egg_info.py -------------------------------------------------------------------------------- /bento/distutils/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/distutils/commands/install.py -------------------------------------------------------------------------------- /bento/distutils/commands/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/distutils/commands/sdist.py -------------------------------------------------------------------------------- /bento/distutils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/distutils/dist.py -------------------------------------------------------------------------------- /bento/distutils/monkey_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/distutils/monkey_patch.py -------------------------------------------------------------------------------- /bento/distutils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/distutils/tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/distutils/tests/common.py -------------------------------------------------------------------------------- /bento/distutils/tests/test_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/distutils/tests/test_build.py -------------------------------------------------------------------------------- /bento/distutils/tests/test_egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/distutils/tests/test_egg_info.py -------------------------------------------------------------------------------- /bento/distutils/tests/test_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/distutils/tests/test_install.py -------------------------------------------------------------------------------- /bento/distutils/tests/test_sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/distutils/tests/test_sdist.py -------------------------------------------------------------------------------- /bento/distutils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/distutils/utils.py -------------------------------------------------------------------------------- /bento/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/errors.py -------------------------------------------------------------------------------- /bento/installed_package_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/installed_package_description.py -------------------------------------------------------------------------------- /bento/parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/parser/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/lexer.py -------------------------------------------------------------------------------- /bento/parser/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/misc.py -------------------------------------------------------------------------------- /bento/parser/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/nodes.py -------------------------------------------------------------------------------- /bento/parser/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/parser.py -------------------------------------------------------------------------------- /bento/parser/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/rules.py -------------------------------------------------------------------------------- /bento/parser/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/parser/tests/functionals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/parser/tests/functionals/data_distribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/tests/functionals/data_distribute.py -------------------------------------------------------------------------------- /bento/parser/tests/functionals/data_jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/tests/functionals/data_jinja2.py -------------------------------------------------------------------------------- /bento/parser/tests/functionals/data_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/tests/functionals/data_sphinx.py -------------------------------------------------------------------------------- /bento/parser/tests/functionals/distribute.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/tests/functionals/distribute.info -------------------------------------------------------------------------------- /bento/parser/tests/functionals/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/tests/functionals/generate.py -------------------------------------------------------------------------------- /bento/parser/tests/functionals/jinja2.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/tests/functionals/jinja2.info -------------------------------------------------------------------------------- /bento/parser/tests/functionals/sphinx.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/tests/functionals/sphinx.info -------------------------------------------------------------------------------- /bento/parser/tests/functionals/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/tests/functionals/test.py -------------------------------------------------------------------------------- /bento/parser/tests/pkgdescr/simple_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/tests/pkgdescr/simple_package.py -------------------------------------------------------------------------------- /bento/parser/tests/test_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/tests/test_lexer.py -------------------------------------------------------------------------------- /bento/parser/tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/tests/test_parser.py -------------------------------------------------------------------------------- /bento/parser/tests/test_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/tests/test_parsing.py -------------------------------------------------------------------------------- /bento/parser/tests/test_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/tests/test_visitor.py -------------------------------------------------------------------------------- /bento/parser/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/utils.py -------------------------------------------------------------------------------- /bento/parser/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/parser/visitor.py -------------------------------------------------------------------------------- /bento/private/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/private/_bytecode_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_bytecode_2.py -------------------------------------------------------------------------------- /bento/private/_bytecode_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_bytecode_3.py -------------------------------------------------------------------------------- /bento/private/_ply/ply/__init__.py: -------------------------------------------------------------------------------- 1 | # PLY package 2 | # Author: David Beazley (dave@dabeaz.com) 3 | 4 | __all__ = ['lex','yacc'] 5 | -------------------------------------------------------------------------------- /bento/private/_ply/ply/lex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_ply/ply/lex.py -------------------------------------------------------------------------------- /bento/private/_ply/ply/yacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_ply/ply/yacc.py -------------------------------------------------------------------------------- /bento/private/_simplejson/simplejson/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_simplejson/simplejson/__init__.py -------------------------------------------------------------------------------- /bento/private/_simplejson/simplejson/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_simplejson/simplejson/decoder.py -------------------------------------------------------------------------------- /bento/private/_simplejson/simplejson/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_simplejson/simplejson/encoder.py -------------------------------------------------------------------------------- /bento/private/_simplejson/simplejson/ordered_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_simplejson/simplejson/ordered_dict.py -------------------------------------------------------------------------------- /bento/private/_simplejson/simplejson/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_simplejson/simplejson/scanner.py -------------------------------------------------------------------------------- /bento/private/_simplejson/simplejson/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_simplejson/simplejson/tool.py -------------------------------------------------------------------------------- /bento/private/_six/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_six/six.py -------------------------------------------------------------------------------- /bento/private/_yaku/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/MANIFEST.in -------------------------------------------------------------------------------- /bento/private/_yaku/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/NOTES -------------------------------------------------------------------------------- /bento/private/_yaku/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/README -------------------------------------------------------------------------------- /bento/private/_yaku/examples/2to3/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/2to3/example.py -------------------------------------------------------------------------------- /bento/private/_yaku/examples/2to3/foo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/2to3/foo/__init__.py -------------------------------------------------------------------------------- /bento/private/_yaku/examples/c/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/c/example.py -------------------------------------------------------------------------------- /bento/private/_yaku/examples/c/src/bar.c: -------------------------------------------------------------------------------- 1 | #ifndef _FOO 2 | #error yo 3 | #endif 4 | 5 | int bar() { return 0;} 6 | -------------------------------------------------------------------------------- /bento/private/_yaku/examples/c/src/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/c/src/main.cxx -------------------------------------------------------------------------------- /bento/private/_yaku/examples/c/try_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/c/try_example.py -------------------------------------------------------------------------------- /bento/private/_yaku/examples/chaining/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/chaining/build.py -------------------------------------------------------------------------------- /bento/private/_yaku/examples/chaining/hello.pyx.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/chaining/hello.pyx.in -------------------------------------------------------------------------------- /bento/private/_yaku/examples/conf_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/conf_example.py -------------------------------------------------------------------------------- /bento/private/_yaku/examples/example4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/example4.py -------------------------------------------------------------------------------- /bento/private/_yaku/examples/example5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/example5.py -------------------------------------------------------------------------------- /bento/private/_yaku/examples/file_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/file_hook.py -------------------------------------------------------------------------------- /bento/private/_yaku/examples/fortran/conf_fortran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/fortran/conf_fortran.py -------------------------------------------------------------------------------- /bento/private/_yaku/examples/fortran/fortran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/fortran/fortran.py -------------------------------------------------------------------------------- /bento/private/_yaku/examples/fortran/src/bar.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /bento/private/_yaku/examples/fortran/src/bar.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | std::cout << "yo\n"; 6 | } 7 | -------------------------------------------------------------------------------- /bento/private/_yaku/examples/fortran/src/bar.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/fortran/src/bar.f -------------------------------------------------------------------------------- /bento/private/_yaku/examples/node_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/node_example.py -------------------------------------------------------------------------------- /bento/private/_yaku/examples/numpytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/numpytest.py -------------------------------------------------------------------------------- /bento/private/_yaku/examples/override_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/override_ext.py -------------------------------------------------------------------------------- /bento/private/_yaku/examples/pyext_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/pyext_example.py -------------------------------------------------------------------------------- /bento/private/_yaku/examples/src/bar.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/src/bar.f -------------------------------------------------------------------------------- /bento/private/_yaku/examples/src/bar.pyx: -------------------------------------------------------------------------------- 1 | def foo(): 2 | 3 | print "foo" 4 | -------------------------------------------------------------------------------- /bento/private/_yaku/examples/src/foo.c: -------------------------------------------------------------------------------- 1 | #include "foo.h" 2 | 3 | int foo(void) 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /bento/private/_yaku/examples/src/foo.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/src/foo.h.in -------------------------------------------------------------------------------- /bento/private/_yaku/examples/src/fubar.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/private/_yaku/examples/src/hellomodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/src/hellomodule.c -------------------------------------------------------------------------------- /bento/private/_yaku/examples/src/main.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | printf("Hello\n"); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /bento/private/_yaku/examples/src/main2.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | printf("Hello\n"); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /bento/private/_yaku/examples/src/main3.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | printf("Hello\n"); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /bento/private/_yaku/examples/src/vonmises_cython.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/src/vonmises_cython.pyx -------------------------------------------------------------------------------- /bento/private/_yaku/examples/src/yo.i: -------------------------------------------------------------------------------- 1 | %module yo 2 | -------------------------------------------------------------------------------- /bento/private/_yaku/examples/subst_tool/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/subst_tool/example.py -------------------------------------------------------------------------------- /bento/private/_yaku/examples/subst_tool/foo.ini.in: -------------------------------------------------------------------------------- 1 | [common] 2 | rev = {{HEAD}} 3 | -------------------------------------------------------------------------------- /bento/private/_yaku/examples/task_precedence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/task_precedence.py -------------------------------------------------------------------------------- /bento/private/_yaku/examples/test_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/examples/test_env.py -------------------------------------------------------------------------------- /bento/private/_yaku/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/setup.py -------------------------------------------------------------------------------- /bento/private/_yaku/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/test.sh -------------------------------------------------------------------------------- /bento/private/_yaku/tools/py3tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/tools/py3tool.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/_config.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/_utils_py2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/_utils_py2.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/_utils_py3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/_utils_py3.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/build_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/build_context.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/compat/py3k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/compat/py3k.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/compat/rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/compat/rename.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/compiled_fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/compiled_fun.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/conf.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/conftests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/conftests/__init__.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/conftests/conftests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/conftests/conftests.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/conftests/fconftests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/conftests/fconftests.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/conftests/fconftests_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/conftests/fconftests_imp.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/context.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/environment.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/errors.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/node.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/pprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/pprint.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/scheduler.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/sysconfig.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/task.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/task_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/task_manager.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tests/test_basic.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tests/test_helpers.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tools/__init__.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/ar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tools/ar.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/cc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tools/cc.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/clang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tools/clang.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/ctasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tools/ctasks.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/cxxtasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tools/cxxtasks.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/cython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tools/cython.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/fortran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tools/fortran.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/g77.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tools/g77.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/gcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tools/gcc.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/gfortran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tools/gfortran.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/gxx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tools/gxx.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/ifort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tools/ifort.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/mscommon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/mscommon/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tools/mscommon/common.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tools/msvc.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/pyext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tools/pyext.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/python_2to3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tools/python_2to3.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/swig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tools/swig.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/tools/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/tools/template.py -------------------------------------------------------------------------------- /bento/private/_yaku/yaku/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/_yaku/yaku/utils.py -------------------------------------------------------------------------------- /bento/private/bytecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/bytecode.py -------------------------------------------------------------------------------- /bento/private/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/private/version.py -------------------------------------------------------------------------------- /bento/pypi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/pypi/register_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/pypi/register_utils.py -------------------------------------------------------------------------------- /bento/pypi/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/pypi/tests/test_register_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/pypi/tests/test_register_utils.py -------------------------------------------------------------------------------- /bento/pypi/tests/test_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/pypi/tests/test_upload.py -------------------------------------------------------------------------------- /bento/pypi/upload_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/pypi/upload_utils.py -------------------------------------------------------------------------------- /bento/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/testing/bentos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/testing/bentos/sphinx_meta.info: -------------------------------------------------------------------------------- 1 | Name: Sphinx 2 | Version: 1.0.3 3 | -------------------------------------------------------------------------------- /bento/testing/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/testing/decorators.py -------------------------------------------------------------------------------- /bento/testing/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/testing/misc.py -------------------------------------------------------------------------------- /bento/testing/sub_test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/testing/sub_test_case.py -------------------------------------------------------------------------------- /bento/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/tests/test_build_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/tests/test_build_manifest.py -------------------------------------------------------------------------------- /bento/tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/tests/test_misc.py -------------------------------------------------------------------------------- /bento/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/utils/__init__.py -------------------------------------------------------------------------------- /bento/utils/io2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/utils/io2.py -------------------------------------------------------------------------------- /bento/utils/os2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/utils/os2.py -------------------------------------------------------------------------------- /bento/utils/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/utils/path.py -------------------------------------------------------------------------------- /bento/utils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bento/utils/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/utils/tests/test_utils.py -------------------------------------------------------------------------------- /bento/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/utils/utils.py -------------------------------------------------------------------------------- /bento/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bento/warnings.py -------------------------------------------------------------------------------- /bentomakerlib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bentomakerlib/bentomaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bentomakerlib/bentomaker.py -------------------------------------------------------------------------------- /bentomakerlib/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bentomakerlib/help.py -------------------------------------------------------------------------------- /bentomakerlib/package_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bentomakerlib/package_cache.py -------------------------------------------------------------------------------- /bentomakerlib/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bentomakerlib/tests/test_bentomaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bentomakerlib/tests/test_bentomaker.py -------------------------------------------------------------------------------- /bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bootstrap.py -------------------------------------------------------------------------------- /bscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/bscript -------------------------------------------------------------------------------- /check_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/check_examples.py -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/config.ini -------------------------------------------------------------------------------- /coveragerc.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/coveragerc.template -------------------------------------------------------------------------------- /dev_requirements.txt: -------------------------------------------------------------------------------- 1 | mock 2 | nose 3 | -------------------------------------------------------------------------------- /dev_requirements26.txt: -------------------------------------------------------------------------------- 1 | -rdev_requirements.txt 2 | unittest2 3 | -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/main_page/chunkfive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/main_page/chunkfive.css -------------------------------------------------------------------------------- /doc/main_page/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/main_page/index.css -------------------------------------------------------------------------------- /doc/main_page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/main_page/index.html -------------------------------------------------------------------------------- /doc/main_page/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/main_page/reset.css -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/misc/autoconf_paths.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/misc/autoconf_paths.rst -------------------------------------------------------------------------------- /doc/misc/egg_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/misc/egg_format.txt -------------------------------------------------------------------------------- /doc/misc/installed_descr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/misc/installed_descr.txt -------------------------------------------------------------------------------- /doc/misc/old_doc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/misc/old_doc.rst -------------------------------------------------------------------------------- /doc/misc/syntax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/misc/syntax.rst -------------------------------------------------------------------------------- /doc/source/.static/.gitempty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/source/.templates/.gitempty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/source/.templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/.templates/index.html -------------------------------------------------------------------------------- /doc/source/.templates/indexsidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/.templates/indexsidebar.html -------------------------------------------------------------------------------- /doc/source/.templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/.templates/layout.html -------------------------------------------------------------------------------- /doc/source/TODO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/TODO.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/contents.rst -------------------------------------------------------------------------------- /doc/source/contribute.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/contribute.rst -------------------------------------------------------------------------------- /doc/source/devnotes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/devnotes.rst -------------------------------------------------------------------------------- /doc/source/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/faq.rst -------------------------------------------------------------------------------- /doc/source/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/features.rst -------------------------------------------------------------------------------- /doc/source/guides.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/guides.rst -------------------------------------------------------------------------------- /doc/source/hacking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/hacking.rst -------------------------------------------------------------------------------- /doc/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/install.rst -------------------------------------------------------------------------------- /doc/source/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/overview.rst -------------------------------------------------------------------------------- /doc/source/reference/bento_format.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/reference/bento_format.rst -------------------------------------------------------------------------------- /doc/source/reference/bentomaker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/reference/bentomaker.rst -------------------------------------------------------------------------------- /doc/source/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/reference/index.rst -------------------------------------------------------------------------------- /doc/source/reference/mpkg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/reference/mpkg.rst -------------------------------------------------------------------------------- /doc/source/singlefile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/singlefile.rst -------------------------------------------------------------------------------- /doc/source/transition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/transition.rst -------------------------------------------------------------------------------- /doc/source/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/tutorial.rst -------------------------------------------------------------------------------- /doc/source/version.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/doc/source/version.rst -------------------------------------------------------------------------------- /doc_requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx>=1.0.0 2 | -------------------------------------------------------------------------------- /examples/build_customization/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/build_customization/bento.info -------------------------------------------------------------------------------- /examples/build_customization/bscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/build_customization/bscript -------------------------------------------------------------------------------- /examples/build_customization/include/common.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/build_customization/src/foo.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/build_customization/src/foolib.c: -------------------------------------------------------------------------------- 1 | int foo() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /examples/build_customization/src/hellomodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/build_customization/src/hellomodule.c -------------------------------------------------------------------------------- /examples/build_customization/top_module/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/build_customization/top_module/bento.info -------------------------------------------------------------------------------- /examples/build_customization/top_module/bscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/build_customization/top_module/bscript -------------------------------------------------------------------------------- /examples/build_customization/top_module/foomodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/build_customization/top_module/foomodule.c -------------------------------------------------------------------------------- /examples/build_customization/top_module/sub_module/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/build_customization/top_module/sub_module/bento.info -------------------------------------------------------------------------------- /examples/build_customization/top_module/sub_module/bscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/build_customization/top_module/sub_module/bscript -------------------------------------------------------------------------------- /examples/build_customization/top_module/sub_module/foomodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/build_customization/top_module/sub_module/foomodule.c -------------------------------------------------------------------------------- /examples/customizations/new_builder/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/customizations/new_builder/bento.info -------------------------------------------------------------------------------- /examples/customizations/new_builder/bscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/customizations/new_builder/bscript -------------------------------------------------------------------------------- /examples/customizations/new_builder/foo.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/customizations/new_builder/hello/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/customizations/new_builder/hello/__init__.py -------------------------------------------------------------------------------- /examples/customizations/new_builder/hello/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/customizations/new_builder/hello/bar.py -------------------------------------------------------------------------------- /examples/customizations/new_builder/src/hellolib.c: -------------------------------------------------------------------------------- 1 | void foo(void) 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /examples/customizations/new_builder/src/hellomodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/customizations/new_builder/src/hellomodule.c -------------------------------------------------------------------------------- /examples/hooks/customization/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/hooks/customization/bento.info -------------------------------------------------------------------------------- /examples/hooks/customization/bscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/hooks/customization/bscript -------------------------------------------------------------------------------- /examples/hooks/customization/src/heap.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/hooks/customization/src/heap.pxd -------------------------------------------------------------------------------- /examples/hooks/customization/src/heap.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/hooks/customization/src/heap.pyx -------------------------------------------------------------------------------- /examples/hooks/customization/src/hellomodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/hooks/customization/src/hellomodule.c -------------------------------------------------------------------------------- /examples/hooks/distutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/hooks/distutils/README -------------------------------------------------------------------------------- /examples/hooks/distutils/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/hooks/distutils/bento.info -------------------------------------------------------------------------------- /examples/hooks/distutils/src/hellomodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/hooks/distutils/src/hellomodule.c -------------------------------------------------------------------------------- /examples/hooks/simple/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/hooks/simple/bento.info -------------------------------------------------------------------------------- /examples/hooks/simple/bscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/hooks/simple/bscript -------------------------------------------------------------------------------- /examples/recursive/deep/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/deep/bento.info -------------------------------------------------------------------------------- /examples/recursive/deep/bscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/deep/bscript -------------------------------------------------------------------------------- /examples/recursive/deep/foo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/recursive/deep/foo/bar1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/recursive/deep/foo/bar1/bento.info: -------------------------------------------------------------------------------- 1 | HookFile: bscript 2 | -------------------------------------------------------------------------------- /examples/recursive/deep/foo/bar1/bscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/deep/foo/bar1/bscript -------------------------------------------------------------------------------- /examples/recursive/deep/foo/bar2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/recursive/deep/foo/bar2/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/deep/foo/bar2/bento.info -------------------------------------------------------------------------------- /examples/recursive/deep/foo/bar2/bscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/deep/foo/bar2/bscript -------------------------------------------------------------------------------- /examples/recursive/deep/foo/bar2/fubar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/recursive/deep/foo/bar2/fubar/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/deep/foo/bar2/fubar/bento.info -------------------------------------------------------------------------------- /examples/recursive/deep/foo/bar2/fubar/bscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/deep/foo/bar2/fubar/bscript -------------------------------------------------------------------------------- /examples/recursive/deep/foo/bar2/fubar/src/hellomodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/deep/foo/bar2/fubar/src/hellomodule.c -------------------------------------------------------------------------------- /examples/recursive/deep/foo/bar2/src/foo.c: -------------------------------------------------------------------------------- 1 | int foo() 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /examples/recursive/deep/foo/bar3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/recursive/deep/foo/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/deep/foo/bento.info -------------------------------------------------------------------------------- /examples/recursive/deep/foo/bscript: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/recursive/deep/foo/src/hellomodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/deep/foo/src/hellomodule.c -------------------------------------------------------------------------------- /examples/recursive/deep/src/hellomodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/deep/src/hellomodule.c -------------------------------------------------------------------------------- /examples/recursive/simple/bar/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/simple/bar/bento.info -------------------------------------------------------------------------------- /examples/recursive/simple/bar/bscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/simple/bar/bscript -------------------------------------------------------------------------------- /examples/recursive/simple/bar/src/hellomodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/simple/bar/src/hellomodule.c -------------------------------------------------------------------------------- /examples/recursive/simple/bar/subar1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/recursive/simple/bar/subar2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/recursive/simple/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/simple/bento.info -------------------------------------------------------------------------------- /examples/recursive/simple/bscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/simple/bscript -------------------------------------------------------------------------------- /examples/recursive/simple/foo/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/simple/foo/bento.info -------------------------------------------------------------------------------- /examples/recursive/simple/foo/bscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/simple/foo/bscript -------------------------------------------------------------------------------- /examples/recursive/simple/foo/src/hellomodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/simple/foo/src/hellomodule.c -------------------------------------------------------------------------------- /examples/recursive/simple/src/hellomodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/recursive/simple/src/hellomodule.c -------------------------------------------------------------------------------- /examples/simples/conditional/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/conditional/bento.info -------------------------------------------------------------------------------- /examples/simples/conditional/hello/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/conditional/hello/__init__.py -------------------------------------------------------------------------------- /examples/simples/conditional/hello/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/conditional/hello/bar.py -------------------------------------------------------------------------------- /examples/simples/conditional/src/hellomodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/conditional/src/hellomodule.c -------------------------------------------------------------------------------- /examples/simples/conditional/src/linbackend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/conditional/src/linbackend.c -------------------------------------------------------------------------------- /examples/simples/conditional/toytodist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/conditional/toytodist.py -------------------------------------------------------------------------------- /examples/simples/config_py/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/config_py/bento.info -------------------------------------------------------------------------------- /examples/simples/config_py/config_py/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/config_py/config_py/__init__.py -------------------------------------------------------------------------------- /examples/simples/config_py/data/foo.stat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/simples/datafiles/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/datafiles/bento.info -------------------------------------------------------------------------------- /examples/simples/datafiles/data/data1.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/simples/datafiles/data/data2.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/simples/datafiles/data/foo.src: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/simples/datafiles/doc/foo.1: -------------------------------------------------------------------------------- 1 | .TH "foo" 1 2 | .SH NAME 3 | foo \- Dummy man page 4 | -------------------------------------------------------------------------------- /examples/simples/datafiles/doc/foo.3: -------------------------------------------------------------------------------- 1 | .TH "foo" 3 2 | .SH NAME 3 | foo \- Another dummy man page 4 | -------------------------------------------------------------------------------- /examples/simples/datafiles/hello/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/simples/datafiles/toytodist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/datafiles/toytodist.py -------------------------------------------------------------------------------- /examples/simples/executable/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/executable/bento.info -------------------------------------------------------------------------------- /examples/simples/executable/foo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/simples/executable/foo/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/executable/foo/commands.py -------------------------------------------------------------------------------- /examples/simples/executable/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/executable/setup.py -------------------------------------------------------------------------------- /examples/simples/single_extension/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/single_extension/bento.info -------------------------------------------------------------------------------- /examples/simples/single_extension/bscript: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/simples/single_extension/hello/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/single_extension/hello/__init__.py -------------------------------------------------------------------------------- /examples/simples/single_extension/hello/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/single_extension/hello/bar.py -------------------------------------------------------------------------------- /examples/simples/single_extension/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/single_extension/setup.py -------------------------------------------------------------------------------- /examples/simples/single_extension/src/hellolib.c: -------------------------------------------------------------------------------- 1 | void foo(void) 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /examples/simples/single_extension/src/hellomodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/single_extension/src/hellomodule.c -------------------------------------------------------------------------------- /examples/simples/single_extension/toytodist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/single_extension/toytodist.py -------------------------------------------------------------------------------- /examples/simples/single_extension_waf/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/single_extension_waf/bento.info -------------------------------------------------------------------------------- /examples/simples/single_extension_waf/hello/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/single_extension_waf/hello/__init__.py -------------------------------------------------------------------------------- /examples/simples/single_extension_waf/hello/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/single_extension_waf/hello/bar.py -------------------------------------------------------------------------------- /examples/simples/single_extension_waf/src/hellomodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/single_extension_waf/src/hellomodule.c -------------------------------------------------------------------------------- /examples/simples/single_module/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/single_module/bento.info -------------------------------------------------------------------------------- /examples/simples/single_module/foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/single_module/foo.py -------------------------------------------------------------------------------- /examples/simples/single_module/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/single_module/setup.py -------------------------------------------------------------------------------- /examples/simples/single_module/toytodist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/single_module/toytodist.py -------------------------------------------------------------------------------- /examples/simples/single_package/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/single_package/bento.info -------------------------------------------------------------------------------- /examples/simples/single_package/foo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/single_package/foo/__init__.py -------------------------------------------------------------------------------- /examples/simples/single_package/foo/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/single_package/foo/bar.py -------------------------------------------------------------------------------- /examples/simples/single_package/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/single_package/setup.py -------------------------------------------------------------------------------- /examples/simples/single_package/toytodist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/simples/single_package/toytodist.py -------------------------------------------------------------------------------- /examples/var_example/_foo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/var_example/_foo.c -------------------------------------------------------------------------------- /examples/var_example/bento.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/examples/var_example/bento.info -------------------------------------------------------------------------------- /run_coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/run_coverage.sh -------------------------------------------------------------------------------- /sandbox/egg2wininst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/sandbox/egg2wininst.py -------------------------------------------------------------------------------- /sandbox/wininst2egg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/sandbox/wininst2egg.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/setup.py -------------------------------------------------------------------------------- /test_pyversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/test_pyversion.sh -------------------------------------------------------------------------------- /tools/bentomaker.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/tools/bentomaker.in -------------------------------------------------------------------------------- /tools/singledist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/tools/singledist.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/tox.ini -------------------------------------------------------------------------------- /update_gh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cournape/Bento/HEAD/update_gh.sh --------------------------------------------------------------------------------