Skip to content

Commit

Permalink
Issue #48 bifurcate the problem - fixes "*" not supported
Browse files Browse the repository at this point in the history
it still might be language=c++
  • Loading branch information
Lee Kamentsky committed Dec 9, 2015
1 parent c5c5333 commit 4b097bb
Showing 1 changed file with 28 additions and 4 deletions.
32 changes: 28 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,16 +74,40 @@ def run_tests(self):
]
),
setuptools.Extension(
name="_propagate",
name="_convex_hull",
sources=[
"centrosome/_propagate.pyx",
"centrosome/_convex_hull.pyx",
],
),
setuptools.Extension(
name="_cpmorphology2",
sources=[
"centrosome/_cpmorphology2.pyx",
],
),
setuptools.Extension(
name="*",
name="_fastemd",
language="c++",
sources=[
"centrosome/*.pyx",
"centrosome/_fastemd.pyx",
],
),
setuptools.Extension(
name="_filter",
sources=[
"centrosome/_filter.pyx",
],
),
setuptools.Extension(
name="_lapjv",
sources=[
"centrosome/_lapjv.pyx",
],
),
setuptools.Extension(
name="_propagate",
sources=[
"centrosome/_propagate.pyx",
],
),
]),
Expand Down

0 comments on commit 4b097bb

Please sign in to comment.