-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
12 lines (12 loc) · 812 Bytes
/
Copy pathsetup.py
File metadata and controls
12 lines (12 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
from distutils.core import setup
setup(name='pyannotation',
version='0.3.0',
description='Python Linguistic Annotation Library',
long_description='PyAnnotation is a Python Library to access and manipulate linguistically annotated corpus files. Supported file format is currently Elan XML, Kura XML and Toolbox files. A Corpus Reader API is provided to support statistical analysis within the Natural Language Toolkit. ',
author='Peter Bouda',
author_email='pbouda@cidles.eu',
url='http://www.cidles.eu/ltll/poio-pyannotation',
packages=[ 'pyannotation', 'pyannotation.ag', 'pyannotation.elan', 'pyannotation.kura', 'pyannotation.toolbox' ],
package_dir={'pyannotation': 'src/pyannotation'},
package_data={'pyannotation': ['xsl/*.xsl', 'xsd/*.xsd']},
)