-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
79 lines (68 loc) · 1.65 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
77
78
79
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "merge3"
description = "Python implementation of 3-way merge"
maintainers = [{name = "Breezy Developers", email = "[email protected]"}]
license = {text = "GNU GPLv2 or later"}
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: POSIX",
]
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = []
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.urls]
Homepage = "https://www.breezy-vcs.org/"
GitHub = "https://github.com/breezy-team/merge3"
[project.optional-dependencies]
"dev" = [
"ruff==0.7.3"
]
[tool.setuptools]
packages = ["merge3"]
include-package-data = false
[tool.setuptools.package-data]
merge3 = ["py.typed"]
[tool.setuptools.dynamic]
version = {attr = "merge3.__version__"}
[project.scripts]
merge3 = "merge3.__main__:main"
[tool.ruff]
target-version = "py37"
[tool.ruff.lint]
select = [
"ANN",
"D",
"E",
"F",
"I",
"UP",
]
ignore = [
"ANN001",
"ANN101",
"ANN201",
"ANN202",
"ANN205",
"D100",
"D101",
"D102",
"D103",
"D104",
"D415",
]
[tool.ruff.lint.pydocstyle]
convention = "google"