Commit 8ed7df12 authored by Andreas Schmidt's avatar Andreas Schmidt
Browse files

Ignore pyc files. Improve bindings.

parent 6d4fda36
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@ build/
bin/
*.cmake
src/cython/prrt.c
*.pyc
CMakeCache.txt
CMakeFiles/
Makefile

eval.sh

0 → 100644
+2 −0
Original line number Diff line number Diff line
#!/usr/bin/env bash
sudo python3 eval.py
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -4,5 +4,5 @@ from Cython.Build import cythonize

setup(
    include_dirs=["./src"],
    ext_modules = cythonize(["src/cython/prrt.pyx"], gdb_debug=True)
    ext_modules = cythonize("src/cython/**/*.pyx", gdb_debug=True)
)
 No newline at end of file

tests/__init__.py

0 → 100644
+0 −0

Empty file added.