forked from kristjan/cjvt-valency
12 lines
248 B
Python
12 lines
248 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='seqparser',
|
||
|
version='0.0.1',
|
||
|
description='Parser for sskj2 html dump.',
|
||
|
author='Kristjan Voje',
|
||
|
author_email='kristjan.voje@gmail.com',
|
||
|
license='MIT',
|
||
|
packages=['seqparser'],
|
||
|
)
|