Skip to content

Commit

Permalink
v0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Christophe Van Gysel committed Mar 21, 2018
1 parent 41345ef commit 14dc84a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -1,2 +1,4 @@
MANIFEST
dist/
build/
*.pyc
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -33,7 +33,7 @@

trec_eval_dir = os.path.join(tmp_dir, REMOTE_TREC_EVAL_ZIP_DIRNAME)

for filename in os.listdir(LOCAL_TREC_EVAL_DIR):
for filename in os.listdir(trec_eval_dir):
if filename.endswith('.c'):
TREC_EVAL_SRC.append(os.path.join(LOCAL_TREC_EVAL_DIR, filename))

Expand All @@ -49,7 +49,7 @@
('P_NEEDS_GNU_CXX_NAMESPACE', '1')])

setup(name='pytrec_eval',
version='0.1',
version='0.2',
description='Provides Python bindings for popular '
'Information Retrieval measures implemented '
'within trec_eval.',
Expand All @@ -60,7 +60,7 @@
package_dir={'pytrec_eval': 'py'},
python_requires='>=3',
url='https://github.com/cvangysel/pytrec_eval',
download_url='https://github.com/cvangysel/pytrec_eval/tarball/0.1',
download_url='https://github.com/cvangysel/pytrec_eval/tarball/0.2',
keywords=[
'trec_eval',
'information retrieval',
Expand Down

0 comments on commit 14dc84a

Please sign in to comment.