Fix filename for long_description

This commit is contained in:
Tanay Soni 2019-11-27 17:18:05 +01:00
parent 5435611f32
commit 84ce175afe

View File

@ -14,16 +14,16 @@ parsed_requirements = [
setup(
name="farm-haystack",
version="0.1.0",
version="0.1.2",
author="Malte Pietsch, Timo Moeller, Branden Chan, Tanay Soni",
author_email="malte.pietsch@deepset.ai",
description="Neural Question Answering at Scale. Use modern transformer based models like BERT to find answers in large document collections",
long_description=open("readme.rst", "r", encoding="utf-8").read(),
long_description=open("README.rst", "r", encoding="utf-8").read(),
long_description_content_type="text/x-rst",
keywords="QA Question-Answering Reader Retriever BERT roberta albert squad mrc transfer-learning language-model transformer",
license="Apache",
url="https://github.com/deepset-ai/haystack",
download_url="https://github.com/deepset-ai/haystack/archive/0.1.0.tar.gz",
download_url="https://github.com/deepset-ai/haystack/archive/0.1.2.tar.gz",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=parsed_requirements,
python_requires=">=3.6.0",