blob: ce2e3b62b10a52e2636eb35ce2ff278dcee74386 [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",
Marc Kupietz1e7e1542021-05-01 20:36:36 +02008 version="0.6.0.9000",
Marc Kupietzca080692020-06-19 18:06:46 +02009 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",
Marc Kupietzf5fb1ee2020-06-26 22:42:42 +020019 'Programming Language :: Python :: 3.6',
20 'Programming Language :: Python :: 3.7',
21 'Programming Language :: Python :: 3.8',
Marc Kupietzee0b46c2021-04-30 10:46:52 +020022 'Programming Language :: Python :: 3.9',
Marc Kupietzf5fb1ee2020-06-26 22:42:42 +020023 'License :: OSI Approved :: BSD License',
24 'Operating System :: OS Independent',
25 'Intended Audience :: Developers',
26 'Intended Audience :: Science/Research',
Marc Kupietzca080692020-06-19 18:06:46 +020027 ],
Marc Kupietz018a1682020-07-10 15:50:33 +020028 scripts=['bin/korapclient'],
Marc Kupietzca080692020-06-19 18:06:46 +020029 test_suite='nose.collector',
30 tests_require=['nose'],
31 python_requires='>=3.6',
32 install_requires=[
Marc Kupietzf7b1d002020-06-24 14:46:18 +020033 'rpy2>=3.3',
Marc Kupietzf84866e2020-07-31 10:17:38 +020034 'plotly',
Marc Kupietzca080692020-06-19 18:06:46 +020035 'plotly-express',
Marc Kupietz7f6dfd82021-05-01 20:36:12 +020036 'pandas>=1.2',
Marc Kupietzca080692020-06-19 18:06:46 +020037 'markdown'
38 ]
39)