summaryrefslogtreecommitdiff
path: root/python/setup.py
diff options
context:
space:
mode:
authorVictor Chahuneau <vchahune@cs.cmu.edu>2012-07-27 01:16:03 -0400
committerVictor Chahuneau <vchahune@cs.cmu.edu>2012-07-27 01:16:03 -0400
commit8fdc3681fb7551e7faeff9f720102cdd417ba077 (patch)
tree1129d2b79a3255c249e181141814cb92b52b4d4d /python/setup.py
parent0aac9fd78f1c8b9ba3d91d702f592288075cbbde (diff)
[python] Fork of the suffix-array extractor with surface improvements
Available as the cdec.sa module, with commande-line helpers: python -m cdec.sa.compile -f ... -e ... -a ... -o sa-out/ -c extract.ini python -m cdec.sa.extract -c extract.ini -g grammars-out/ < input.txt > input.sgml + renamed cdec.scfg -> cdec.sa + Python README
Diffstat (limited to 'python/setup.py')
-rw-r--r--python/setup.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/python/setup.py b/python/setup.py
index 701841a4..9ae4a35c 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -34,17 +34,19 @@ else:
ext_modules = [
Extension(name='_cdec',
sources=['src/_cdec.cpp'],
- language='C++',
include_dirs=INC,
library_dirs=LIB,
libraries=[BOOST_PROGRAM_OPTIONS, 'z',
'cdec', 'utils', 'mteval', 'training', 'klm', 'klm_util'],
extra_compile_args=['-DHAVE_CONFIG_H'],
extra_link_args=LINK_ARGS),
+ Extension(name='_cdec_sa',
+ sources=['src/sa/_cdec_sa.c', 'src/sa/strmap.cc'])
]
setup(
name='cdec',
ext_modules=ext_modules,
- packages=['cdec', 'cdec.scfg']
+ requires=['configobj'],
+ packages=['cdec', 'cdec.sa']
)