-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
35 lines (30 loc) · 1.04 KB
/
pyproject.toml
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
[build-system]
requires = ["poetry-core >= 1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "sphinx-tsegsearch"
version = "1.1.1"
description = "Sphinx extension to split searchword with TinySegmenter"
readme = "README.rst"
license = "MIT"
authors = ["Yasushi Masuda <[email protected]>"]
homepage = "https://github.com/whosaysni/sphinx-tsegsearch/"
repository = "https://github.com/whosaysni/sphinx-tsegsearch/"
keywords = ["sphinx", "japanese", "word", "segmentation", "search"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Plugins",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Documentation :: Sphinx"
]
packages = [
{ include = "sphinx_tsegsearch" },
{ include = "sphinx_tsegsearch/static/*.js" },
{ include = "sphinx_tsegsearch/templates/*.html" },
]
[tool.poetry.dependencies]
install_requires=['docutils', 'sphinx']