Skip to content
Snippets Groups Projects
Commit acf8e1d5 authored by Adam Radziszewski's avatar Adam Radziszewski
Browse files

add iobber setup script

parent 5629772b
No related branches found
No related tags found
No related merge requests found
setup.py 0 → 100755
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
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-kpwr03/*.cr', 'data/model-kpwr03/*.lex']
# TODO: pre-trained models as well
},
license='GPL', # hopefully
entry_points={
'console_scripts': [
'iobber = iobber.iobber:go'
]
}
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment