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