forked from python/cherry-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (49 loc) Β· 1.33 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
[build-system]
build-backend = "hatchling.build"
requires = [
"hatch-vcs",
"hatchling",
]
[project]
name = "cherry-picker"
readme = "readme.rst"
maintainers = [{ name = "Python Core Developers", email = "[email protected]" }]
authors = [{ name = "Mariatta Wijaya", email = "[email protected]" }]
requires-python = ">=3.8"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"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",
]
dynamic = [
"description",
"version",
]
dependencies = [
"click>=6",
"gidgethub",
"requests",
'tomli>=1.1; python_version < "3.11"',
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
]
[project.urls]
"Homepage" = "https://github.com/python/cherry-picker"
[project.scripts]
cherry_picker = "cherry_picker.cherry_picker:cherry_pick_cli"
[tool.hatch.version]
source = "vcs"
# Change regex to match tags like "cherry-picker-v2.2.0".
tag-pattern = '^cherry-picker-(?P<version>[vV]?\d+(?:\.\d+){0,2}[^\+]*)(?:\+.*)?$'
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[tool.isort]
profile = "black"