Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
bd2de3a65b9a8307939ee5c100c02f4644891e76
/
.
/
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"
]),
])