Sign in
android
/
toolchain
/
python
/
refs/heads/ndk-release-r19
/
.
/
Python-2.7.5
/
Doc
/
includes
/
setup.py
blob: b853d23b170985a0058a184ebc2db262747e9215 [
file
] [
log
] [
blame
] [
edit
]
from
distutils
.
core
import
setup
,
Extension
setup
(
name
=
"noddy"
,
version
=
"1.0"
,
ext_modules
=[
Extension
(
"noddy"
,
[
"noddy.c"
]),
Extension
(
"noddy2"
,
[
"noddy2.c"
]),
Extension
(
"noddy3"
,
[
"noddy3.c"
]),
Extension
(
"noddy4"
,
[
"noddy4.c"
]),
])