KeivanR's picture
hf space name
2f3df87
raw
history blame
420 Bytes
from setuptools import setup, find_packages
setup(
name="qwen_classifier",
version="0.1",
packages=find_packages(),
install_requires=[
'torch',
'transformers',
'click',
'scikit-learn',
'huggingface_hub',
'requests',
'pandas'
],
entry_points={
'console_scripts': [
'qwen-clf=qwen_classifier.cli:cli',
],
},
)