Skip to content
This repository has been archived by the owner on Feb 22, 2020. It is now read-only.

Commit

Permalink
fix(setup): fix path in setup script
Browse files Browse the repository at this point in the history
  • Loading branch information
hanhxiao committed Aug 29, 2019
1 parent 3818c9a commit 030d6c6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@

extensions = [
Extension(
'gnes.indexer.vector.bindexer.cython',
['gnes/indexer/vector/bindexer/bindexer.pyx'],
'gnes.indexer.chunk.bindexer.cython',
['gnes/indexer/chunk/bindexer/bindexer.pyx'],
extra_compile_args=['-O3', '-g0'],
),
Extension(
'gnes.indexer.vector.hbindexer.cython',
['gnes/indexer/vector/hbindexer/hbindexer.pyx'],
'gnes.indexer.chunk.hbindexer.cython',
['gnes/indexer/chunk/hbindexer/hbindexer.pyx'],
extra_compile_args=['-O3', '-g0'],
),
]
Expand Down

0 comments on commit 030d6c6

Please sign in to comment.