nlp/packages/stand-off-data-py/setup.py
2021-07-22 16:59:29 +02:00

15 lines
392 B
Python

import setuptools
setuptools.setup(
name='stand-off-data',
author='Patrick Jentsch',
author_email='p.jentsch@uni-bielefeld.de',
description='A python library to handle stand off data.',
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
packages=setuptools.find_packages(),
python_requires='>=3.5'
)