Blessmore's picture
Create setup.py
76ce5d7 verified
raw
history blame contribute delete
No virus
227 Bytes
from setuptools import setup, find_packages
setup(
name="shonaembeddings",
version="0.1.0",
packages=find_packages(),
install_requires=[
"gensim",
"huggingface_hub",
"requests"
],
)