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="jacopo.chevallard@mailfence.com", 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", )