Datasets:

Modalities:
Text
Formats:
json
Languages:
English
ArXiv:
Libraries:
Datasets
pandas
License:
CRAG / setup.py
jchevallard's picture
feat: converting CRAG sampler to a package for simpler install and use
df57a76
raw
history blame
671 Bytes
from setuptools import setup, find_packages
setup(
name="crag-sampler",
version="0.1.0",
packages=find_packages(),
install_requires=["pandas>=1.0.0", "scikit-learn>=0.24.0"],
author="Jacopo Chevallard",
author_email="[email protected]",
description="A tool for sampling CRAG datasets",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://huggingface.co/Quivr/CRAG",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
)