forked from megagonlabs/ginza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.01 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
from setuptools import setup, find_packages
setup(
author="Megagon Labs, Tokyo.",
author_email="[email protected]",
description="GiNZA, An Open Source Japanese NLP Library, based on Universal Dependencies",
entry_points={
"spacy_factories": [
"bunsetu_recognizer = ginza:make_bunsetu_recognizer",
"compound_splitter = ginza:make_compound_splitter",
"disable_sentencizer = ginza:disable_sentencizer",
],
"console_scripts": [
"ginza = ginza.command_line:main_ginza",
"ginzame = ginza.command_line:main_ginzame",
],
},
install_requires=[
"spacy>=3.2.0,<3.3.0",
"plac>=1.3.3",
"SudachiPy>=0.6.2,<0.7.0",
"SudachiDict-core>=20210802",
],
setup_requires=["pytest-runner"],
tests_require=["pytest", "pytest-cov", "pytest-mock"],
license="MIT",
name="ginza",
packages=find_packages(include=["ginza"]),
url="https://github.com/megagonlabs/ginza",
version='5.1.0',
)