-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 1012 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 1012 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
34
35
36
37
38
39
40
41
[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"
[dependency-groups]
dev = [
"pytest>=8.0",
"twine>=6.0",
"build>=1.0",
"mypy>=1.0",
]