Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LARN
PRRT
Commits
8ed7df12
Commit
8ed7df12
authored
Apr 08, 2016
by
Andreas Schmidt
Browse files
Ignore pyc files. Improve bindings.
parent
6d4fda36
Changes
4
Show whitespace changes
Inline
Side-by-side
.gitignore
View file @
8ed7df12
...
...
@@ -3,6 +3,7 @@ build/
bin/
*.cmake
src/cython/prrt.c
*.pyc
CMakeCache.txt
CMakeFiles/
Makefile
...
...
eval.sh
0 → 100644
View file @
8ed7df12
#!/usr/bin/env bash
sudo
python3 eval.py
\ No newline at end of file
setup.py
View file @
8ed7df12
...
...
@@ -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
View file @
8ed7df12
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment