-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (65 loc) · 1.69 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (65 loc) · 1.69 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[project]
name = "gibr"
dynamic = ["version"]
authors = [
{ name="Yair Treister", email="ytreister@gmail.com" },
]
description = "A Git CLI tool for intelligently creating branch names"
readme = "README.md"
requires-python = ">=3.11"
keywords = ["git", "cli", "automation", "github", "gitlab", "jira"]
dependencies = [
"GitPython>=3.1.43",
"click>=8.3.0",
"python-dotenv==1.2.1",
"python-slugify>=8.0.4",
"tabulate>=0.9.0",
"requests==2.32.5",
]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Version Control :: Git",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
jira = ["jira>=3.9.2"]
gitlab = ["python-gitlab>=6.5.0"]
github = ["PyGithub>=2.8.1"]
azure = ["azure-devops>=7.1.0b4"]
dev = [
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
]
[project.scripts]
gibr = 'gibr.cli:cli'
[project.urls]
Homepage = "https://github.com/ytreister/gibr"
Repository = "https://github.com/ytreister/gibr"
Issues = "https://github.com/ytreister/gibr/issues"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/gibr"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build]
exclude = ["venv"]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.pytest.ini_options]
pythonpath = [
"src"
]
addopts = "-v --color=yes --cov-fail-under=90 --cov=. --cov-report xml"
[tool.ruff.lint]
select = ["F", "E", "W", "I", "N", "D", "UP", "PLR"]
ignore = ["D213", "D203", "D104"]
[tool.coverage.run]
omit = [
"tests/*"
]