Skip to content
Snippets Groups Projects
Commit ef734fbc authored by Bartosz Broda's avatar Bartosz Broda
Browse files

temp setup py2exe

parent c7cae09d
No related merge requests found
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import py2exe
setup(name='iobber',
version='0.8.0',
description='Chunker for Slavic languages based on CRF++ and WCCL',
author= "Adam Radziszewski",
author_email="adam.radziszewski@pwr.wroc.pl",
packages=[
'iobber'
],
package_data={
'iobber': [
'data/*.ini', 'data/*.ccl', 'data/*.txt', 'data/*.lex',
'data/model-kpwr04/*.cr', 'data/model-kpwr04/*.lex']
# TODO: pre-trained models as well
},
license='LGPL',
entry_points={
'console_scripts': [
'iobber = iobber.iobber:go'
]
},
console=['iobber/iobber_txt.py', 'tools/iobber_test.py'],
options = {
"py2exe" : {
"packages" : ["corpus2", 'iobber', 'ctypes', 'platform'],
}
}
)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment