blob: 53f5cb8f03bff09c2500659c5ff318172bbfe305 [file] [log] [blame]
from setuptools import setup, find_packages
with open("Readme.md", "r") as fh:
long_description = fh.read()
setup(
name="KorAPClient",
version="0.1.0",
author="Marc Kupietz",
author_email="kupietz@ids-mannheim.de",
description="Client package to access KorAP's web service API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://www1.ids-mannheim.de/kl/projekte/korap.html",
license="BSD",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
test_suite='nose.collector',
tests_require=['nose'],
python_requires='>=3.6',
install_requires=[
'rpy2>=3.3',
'plotly-express',
'pandas',
'markdown'
]
)