blob: e41c26735cfb44aeed5345612528403ae7c31f4f [file] [log] [blame]
Marc Kupietzca080692020-06-19 18:06:46 +02001from setuptools import setup, find_packages
2
3with open("Readme.md", "r") as fh:
4 long_description = fh.read()
5
6setup(
7 name="KorAPClient",
8 version="0.0.1",
9 author="Marc Kupietz",
10 author_email="kupietz@ids-mannheim.de",
11 description="Client package to access KorAP's web service API",
12 long_description=long_description,
13 long_description_content_type="text/markdown",
Marc Kupietza039fcf2020-06-20 15:59:37 +020014 url="https://www1.ids-mannheim.de/kl/projekte/korap.html",
Marc Kupietzca080692020-06-19 18:06:46 +020015 license="BSD",
16 packages=find_packages(),
17 classifiers=[
18 "Programming Language :: Python :: 3",
19 "License :: OSI Approved :: BSD License",
20 "Operating System :: OS Independent",
21 ],
22 test_suite='nose.collector',
23 tests_require=['nose'],
24 python_requires='>=3.6',
25 install_requires=[
26 'rpy2',
27 'plotly-express',
28 'pandas',
29 'markdown'
30 ]
31)