-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 917 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 917 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "difflib-parser"
dynamic = ["version"]
authors = [{ name = "Jiahao, Woo", email = "woojiahao1234@gmail.com" }]
description = "Lightweight Python package for parsing Python difflib's diff results"
readme = "README.md"
requires-python = ">=3.13"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Programming Language :: Python :: 3.13",
]
license.file = "LICENSE"
[project.urls]
Homepage = "https://github.com/git-mastery/difflib-parser.git"
Repository = "https://github.com/git-mastery/difflib-parser.git"
Issues = "https://github.com/git-mastery/difflib-parser/issues"
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
pythonpath = ["src"]
[tool.mypy]
mypy_path = "src"
[tool.hatch.version]
path = "src/difflib_parser/version.py"