Spaces:
Runtime error
Runtime error
| import setuptools | |
| with open('requirements.txt') as f: | |
| requirements = f.read().splitlines() | |
| pyserini_packages = setuptools.find_packages() | |
| pyserini_packages.remove('tests') | |
| # For some reason, not automatically discovered | |
| pyserini_packages.append('pyserini.2cr') | |
| setuptools.setup( | |
| name="pyserini", | |
| version="0.20.0", | |
| author="Jimmy Lin", | |
| author_email="[email protected]", | |
| description="A Python toolkit for reproducible information retrieval research with sparse and dense representations", | |
| url="https://github.com/castorini/pyserini", | |
| install_requires=requirements, | |
| packages=pyserini_packages, | |
| package_data={"pyserini": [ | |
| "resources/jars/anserini-*-fatjar.jar", | |
| ]}, | |
| include_package_data=True, | |
| classifiers=[ | |
| "Programming Language :: Python :: 3", | |
| "License :: OSI Approved :: Apache Software License", | |
| "Operating System :: OS Independent", | |
| ], | |
| python_requires='>=3.8', | |
| ) | |