cognitivess / setup.py
cognitivess's picture
Upload setup.py with huggingface_hub
f53ee40 verified
raw
history blame
187 Bytes
from setuptools import setup, find_packages
setup(
name='cognitivess_model',
version='0.1',
packages=find_packages(),
install_requires=[
'transformers',
],
)