-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (27 loc) · 831 Bytes
/
pyproject.toml
File metadata and controls
34 lines (27 loc) · 831 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
[project]
name = "splitpatch"
dynamic = ["version"]
description = "An intelligent tool for splitting large patch files into smaller file-based patches"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [
{name = "Chao Liu", email = "chaoliu719@gmail.com"},
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.scripts]
splitpatch = "splitpatch.cli:main"
[project.urls]
Homepage = "https://github.com/chaoliu719/splitpatch"
Issues = "https://github.com/chaoliu719/splitpatch/issues"
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*", ".github"]
[tool.setuptools_scm]
[tool.coverage.run]
omit = ["*/*profiling*"]