forked from flairNLP/flair
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 911 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
24
25
26
27
28
29
30
31
from setuptools import setup, find_packages
setup(
name='flair',
version='0.4.1',
description='A very simple framework for state-of-the-art NLP',
long_description=open("README.md", encoding='utf-8').read(),
long_description_content_type="text/markdown",
author='Alan Akbik',
author_email='[email protected]',
url='https://github.com/zalandoresearch/flair',
packages=find_packages(exclude='test'), # same as name
license='MIT',
install_requires=[
'torch>=1.0.0',
'gensim>=3.4.0',
'tqdm>=4.26.0',
'segtok>=1.5.7',
'matplotlib>=2.2.3',
'mpld3>=0.3',
'sklearn',
'sqlitedict>=1.6.0',
'deprecated>=1.2.4',
'hyperopt>=0.1.1',
'pytorch-pretrained-bert>=0.6.1',
'bpemb>=0.2.9',
'regex==2018.1.10'
],
include_package_data=True,
python_requires='>=3.6',
)