KeivanR's picture
other files
6a1e686
raw
history blame
402 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'
],
entry_points={
'console_scripts': [
'qwen-clf=qwen_classifier.cli:cli',
],
},
)