repo.or.cz
/
vapoursynth-svn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use stdlib.h instead of malloc.h.
[vapoursynth-svn.git]
/
setup.py
blob
55621d13511c0a0d8251125a2bd82821147ed23f
1
#!/usr/bin/env python3
2
3
from
distutils
.
core
import
setup
4
from
distutils
.
extension
import
Extension
5
from
Cython
.
Distutils
import
build_ext
6
7
setup
(
8
cmdclass
= {
'build_ext'
:
build_ext
},
9
ext_modules
= [
Extension
(
"vapoursynth"
, [
"src/cython/vapoursynth.pyx"
])]
10
)