-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (42 loc) · 1.06 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
setup(
name='alpheios_tokenizer',
version="0.0.1",
packages=find_packages(exclude=["examples", "tests"]),
url='https://github.com/alpheios-project/tokenizer',
license='GNU GPL',
author='Bridget Almas',
author_email='balmas@gmail.com',
description='Tokenizer for Alpheios',
test_suite="tests",
install_requires=[
"apispec<4.0.0",
"apispec-webframeworks",
"click<=7.2.0",
"flask==1.1.4",
"Flask-Babel",
"Flask-Cache==0.13.1",
"flask-cors==3.0.10",
"flask-marshmallow",
"gunicorn",
"jieba==0.42.1",
"requests>=2.8.1",
"requests-cache==0.4.9",
"lxml<5.0.0",
"marshmallow",
"pkuseg==0.0.25",
"spacy==3.1",
"urllib3",
"pymorphy2-dicts-ru",
"pymorphy2-dicts-uk",
"pymorphy2",
"pythainlp",
"pyvi",
"Jinja2==2.11.3",
"MarkupSafe<2.1.0"
],
tests_require=[
],
include_package_data=True,
zip_safe=False
)