-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
23 lines (22 loc) · 988 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name='pylat',
version='0.2.1',
packages=['pylat', 'pylat.evaluation', 'pylat.wrapper',
'pylat.wrapper.predictor', 'pylat.wrapper.transformer',
'pylat.neuralnet', 'pylat.neuralnet.rnn'],
url='https://github.com/weso/pylat',
license='GPL-3.0',
author='Alejandro González Hevia',
author_email='[email protected]',
description='A simple library with some common nlp operations',
install_requires=[
'gensim', 'scikit-learn', 'numpy', 'pandas',
'spacy==2.0.18', 'tensorflow==1.13.1', 'xmltodict',
'en_core_web_sm', 'es_core_news_sm'
],
dependency_links=[
'https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.0.0/en_core_web_sm-2.0.0.tar.gz#egg=en_core_web_sm-2.0.0',
'https://github.com/explosion/spacy-models/releases/download/es_core_news_sm-2.0.0/es_core_news_sm-2.0.0.tar.gz#egg=es_core_news_sm-2.0.0'
]
)