-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (50 loc) · 1.06 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
[project]
name = "git-tide"
version = "0.2.0"
description = "CLI for automated gitflow-style branching"
authors = [
{name="Chad Dombrova"},
{name="Matt Collie"},
]
readme = "README.md"
dependencies = [
"commitizen ==3.16.0",
"tomli",
"click",
"typing-extensions",
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/chadrik/git-tide"
[project.optional-dependencies]
init = [
"python-gitlab ==4.8.0",
]
test = [
"pytest",
]
[project.scripts]
tide = "tide.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/tide"]
[tool.hatch.envs.default]
installer = "uv"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.mypy]
python_version = "3.7"
files = ["noxfile.py", "src"]
ignore_missing_imports = true
show_error_codes = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
markers = [
"smoke: mark a test as a smoke test",
"unit: mark a test as a unit test"
]
[tool.tide]
tag_format = "$version"
branches.beta = "develop"
branches.rc = "staging"
branches.stable = "master"