-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include topics and qrels in the pip package
Also add dependecies in setup.py
- Loading branch information
1 parent
c6b2c3a
commit ce174cc
Showing
2 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ | |
author='Chris Kamphuis', | ||
author_email='[email protected]', | ||
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.*']} | ||
) |