-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 805 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 805 Bytes
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
[tool.poetry]
name = "textstat-cli-tddschn"
version = "0.1.1"
description = ""
authors = ["Teddy Xinyuan Chen <45612704+tddschn@users.noreply.github.com>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/tddschn/textstat-cli-tddschn"
repository = "https://github.com/tddschn/textstat-cli-tddschn"
classifiers = ["Topic :: Utilities"]
keywords = [
"text",
"text-analysis",
"cli",
"textstat",
"utility",
'command-line',
]
[tool.poetry.scripts]
textstat-cli = "textstat_cli_tddschn.cli:main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/tddschn/textstat-cli-tddschn/issues"
[tool.poetry.dependencies]
python = ">=3.10, <3.12"
textstat = "^0.7.3"
tabulate = "^0.9.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"