-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.2 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[project]
name = "redlines"
version = "0.5.1"
description = "Compare text, and produce human-readable differences or deltas which look like track changes in Microsoft Word."
readme = "README.md"
dependencies = [
"click>=8.1.7",
"rich-click>=1.8.3",
"rich>=13.9.1",
]
requires-python = ">=3.8"
[tool.uv]
dev-dependencies = [
"pdoc>=14.7.0",
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
"pytest-sugar>=1.0.0",
"tox>=4.21.0",
]
[project.scripts]
redlines = 'redlines.cli:cli'
[tool.poetry]
name = "redlines"
version = "0.5.1"
description = "Compare text, and produce human-readable differences or deltas which look like track changes in Microsoft Word."
authors = ["houfu <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://houfu.github.io/redlines/"
repository = "https://github.com/houfu/redlines"
[tool.poetry.dependencies]
python = "<4.0,>=3.8"
rich = "^13.3.5"
click = "^8.1.3"
rich-click = "^1.6.1"
[tool.poetry.dev-dependencies]
pytest = "^7.0.1"
pytest-sugar = "^0.9.4"
pytest-cov = "^3.0.0"
tox = "^3.24.5"
pdoc = "^14.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
redlines = 'redlines.cli:cli'