nlp/packages/stand-off-data-py/setup.py

15 lines
386 B
Python
Raw Normal View History

2021-07-22 14:59:29 +00:00
import setuptools
setuptools.setup(
name='Stand off data',
2021-07-22 14:59:29 +00:00
author='Patrick Jentsch',
author_email='p.jentsch@uni-bielefeld.de',
description='A python library to handle stand off data.',
py_modules=['stand_off_data'],
2021-07-22 14:59:29 +00:00
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
python_requires='>=3.5'
)