├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── cython_template ├── __check_build │ ├── README.md │ ├── __init__.py │ ├── _check_build.pyx │ └── setup.py ├── __init__.py ├── example_code.pyx ├── setup.py └── tests │ ├── __init__.py │ └── test_example_code.py ├── setup.py └── tools └── cythonize.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakevdp/cython_template/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakevdp/cython_template/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakevdp/cython_template/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakevdp/cython_template/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakevdp/cython_template/HEAD/README.md -------------------------------------------------------------------------------- /cython_template/__check_build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakevdp/cython_template/HEAD/cython_template/__check_build/README.md -------------------------------------------------------------------------------- /cython_template/__check_build/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakevdp/cython_template/HEAD/cython_template/__check_build/__init__.py -------------------------------------------------------------------------------- /cython_template/__check_build/_check_build.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakevdp/cython_template/HEAD/cython_template/__check_build/_check_build.pyx -------------------------------------------------------------------------------- /cython_template/__check_build/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakevdp/cython_template/HEAD/cython_template/__check_build/setup.py -------------------------------------------------------------------------------- /cython_template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakevdp/cython_template/HEAD/cython_template/__init__.py -------------------------------------------------------------------------------- /cython_template/example_code.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakevdp/cython_template/HEAD/cython_template/example_code.pyx -------------------------------------------------------------------------------- /cython_template/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakevdp/cython_template/HEAD/cython_template/setup.py -------------------------------------------------------------------------------- /cython_template/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cython_template/tests/test_example_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakevdp/cython_template/HEAD/cython_template/tests/test_example_code.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakevdp/cython_template/HEAD/setup.py -------------------------------------------------------------------------------- /tools/cythonize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakevdp/cython_template/HEAD/tools/cythonize.py --------------------------------------------------------------------------------