Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 335 Bytes
e1c08c5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
from setuptools import setup
setup(
name='torchmoji',
version='1.0',
packages=['torchmoji'],
description='torchMoji',
include_package_data=True,
install_requires=[
'emoji==0.4.5',
'numpy==1.13.1',
'scipy==0.19.1',
'scikit-learn==0.19.0',
'text-unidecode==1.0',
],
)
|