Sign in
flutter
/
third_party
/
pyyaml
/
29413ea88ea02e1f48d4042a8819e8050ab625a3
/
.
/
setup_ext.py
blob: 76a4fbbe16fdf7bc83fe57d1b6abad34061dcceb [
file
]
from
distutils
.
core
import
setup
from
distutils
.
extension
import
Extension
from
Pyrex
.
Distutils
import
build_ext
setup
(
name
=
'_yaml'
,
ext_modules
=[
Extension
(
"_yaml"
,
[
"ext/_yaml.pyx"
],
libraries
=[
'yaml'
]),
],
cmdclass
=
{
'build_ext'
:
build_ext
}
)