-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.26 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (41 loc) · 1.26 KB
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
44
45
46
47
[tool.poetry]
name = "text-humanizer"
version = "0.1.0"
description = "Stop sounding like a bot. Instantly check your text's Humanity Score."
authors = ["Chance Dean <novelnexusai@outlook.com>"]
readme = "README.md"
license = "Apache-2.0"
homepage = "https://github.com/PerryLink/text-humanizer"
repository = "https://github.com/PerryLink/text-humanizer"
keywords = ["text", "readability", "ai", "writing", "cli"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.dependencies]
python = "^3.8"
textstat = "^0.7.3"
rich = "^13.7.0"
typer = "^0.9.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
pytest-cov = "^4.1.0"
black = "^23.12.1"
flake8 = "^7.0.0"
[tool.poetry.scripts]
check-human = "text_humanizer.cli:app"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py38']
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]