-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (24 loc) · 915 Bytes
/
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
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[project]
name = "version-tagger"
version = "0.1.19"
description = "Add and bump semantic version tags to commits"
readme = "README.md"
requires-python = ">=3.10,<3.14"
dependencies = [ "dunamai>=1.23.0", "gitpython>=3.1.44", "toml>=0.10.2", "typer>=0.15.1",]
classifiers = [ "Development Status :: 3 - Alpha", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13",]
[[project.authors]]
name = "James Blackwell"
email = "[email protected]"
[dependency-groups]
dev = [ "pytest>=8.3.4",]
[project.license]
file = "LICENSE"
[project.urls]
Source = "https://github.com/j-blackwell/version-tagger"
[project.scripts]
bump = "version_tagger:app"
[tool.hatch.build]
include = [ "version_tagger.py",]