11 lines
328 B
Python
11 lines
328 B
Python
from setuptools import setup
|
|
|
|
setup(name='structure_assignment',
|
|
version='0.1',
|
|
description='Pipeline for parsing and assigning structures to arbitrary Slovenian strings',
|
|
url='',
|
|
author='Cyprian Laskowski',
|
|
author_email='cyp@cjvt.si',
|
|
packages=['structure_assignment'],
|
|
zip_safe=True)
|