-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
76 lines (66 loc) · 1.67 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "patiencediff"
description = "Python implementation of the patiencediff algorithm"
readme = "README.rst"
maintainers = [{name = "Breezy Developers", email = "team@breezy-vcs.org"}]
license = {text = "GNU GPLv2 or later"}
classifiers = [
"Development Status :: 6 - Mature",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: POSIX",
]
requires-python = ">=3.8"
dynamic = ["version"]
dependencies = []
[project.urls]
Homepage = "https://www.breezy-vcs.org/"
Repository = "https://github.com/breezy-team/patiencediff"
[project.scripts]
patiencediff = "patiencediff.__main__:main"
[tool.setuptools]
packages = ["patiencediff"]
include-package-data = false
[tool.setuptools.package-data]
patiencediff = ["py.typed"]
[tool.setuptools.dynamic]
version = {attr = "patiencediff.__version__"}
[tool.ruff.lint]
select = [
"ANN",
"D",
"E",
"F",
"I",
"UP",
]
ignore = [
"ANN001",
"ANN101",
"ANN201",
"ANN202",
"D100",
"D101",
"D102",
"D103",
"D104",
"E501",
]
[tool.ruff]
target-version = "py38"
line-length = 79
[tool.ruff.lint.pydocstyle]
convention = "google"
[project.optional-dependencies]
dev = [
"ruff==0.7.2"
]