Sign in
android
/
platform
/
external
/
python
/
9b1d2abc48ae89ed48a4915ef47d71db55027059
/
.
/
Doc
/
ext
/
setup.py
blob: 1805b177a246d48178ae4dc2fe32556a15865fe9 [
file
] [
log
] [
blame
]
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"
]),
])