blob: 72f716658d619348b1eec9a2e6f951147429cca3 [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",
14 url="https://korap.ids-mannheim.de",
15 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)