File size: 335 Bytes
86a83a2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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',
    ],
)