Marc Kupietz | ca08069 | 2020-06-19 18:06:46 +0200 | [diff] [blame] | 1 | from setuptools import setup, find_packages |
| 2 | |
| 3 | with open("Readme.md", "r") as fh: |
| 4 | long_description = fh.read() |
| 5 | |
| 6 | setup( |
| 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 Kupietz | a039fcf | 2020-06-20 15:59:37 +0200 | [diff] [blame^] | 14 | url="https://www1.ids-mannheim.de/kl/projekte/korap.html", |
Marc Kupietz | ca08069 | 2020-06-19 18:06:46 +0200 | [diff] [blame] | 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 | ) |