From ce174cc2cc98db0a637b554f5406cbac2b1babf1 Mon Sep 17 00:00:00 2001 From: chriskamphuis Date: Tue, 29 Jun 2021 22:34:49 +0200 Subject: [PATCH] Include topics and qrels in the pip package Also add dependecies in setup.py --- geesedb/resources/topics-and-qrels/__init__.py | 0 setup.py | 6 ++++-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 geesedb/resources/topics-and-qrels/__init__.py diff --git a/geesedb/resources/topics-and-qrels/__init__.py b/geesedb/resources/topics-and-qrels/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py index 596367f..fa2a2ab 100644 --- a/setup.py +++ b/setup.py @@ -7,6 +7,8 @@ author='Chris Kamphuis', author_email='chris@cs.ru.nl', url='https://github.com/informagi/GeeseDB', - install_requires=['duckdb'], - packages=find_packages() + install_requires=['duckdb', 'numpy', 'pandas'], + packages=find_packages(), + include_package_data=True, + package_data={'': ['qrels.*', 'topics.*']} )