16 lines
702 B
Python
16 lines
702 B
Python
from setuptools import setup
|
|
|
|
setup(name='structure_assignment',
|
|
version='0.2',
|
|
description='Pipeline for parsing and assigning structures to arbitrary Slovenian strings',
|
|
url='https://gitea.cjvt.si/generic/structure_assignment',
|
|
author='Cyprian Laskowski',
|
|
author_email='cyp@cjvt.si',
|
|
packages=['structure_assignment'],
|
|
install_requires=['lxml>=4.9',
|
|
'classla>=2.1',
|
|
'conversion_utils @ git+https://gitea.cjvt.si/generic/conversion_utils@89be60310380339f97ccd2feee65d5d69859e7f9',
|
|
'cordex @ git+https://github.com/clarinsi/cordex.git@structure_assignment',
|
|
],
|
|
zip_safe=True)
|