Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
94547f7646895e032f8fc145529d9efc3a70760d
/
.
/
Doc
/
ext
/
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"
]),
])