Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
6b962860e2bd2d08d8d5d38969ed4864f8c1219a
/
.
/
Doc
/
includes
/
setup.py
blob: b853d23b170985a0058a184ebc2db262747e9215 [
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"
]),
])