-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (40 loc) · 1.07 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
[project]
name = "bumpchanges"
description = "Tools to normalize and version-bump CHANGELOG.md files."
readme = "README.md"
dynamic = ["version"]
keywords = ["changelog", "ci"]
requires-python = ">=3.10"
dependencies = [
"linkify-it-py>=2.0.3",
"markdown-it-py>=3.0.0",
"mdformat-gfm>=0.3.6",
"mdformat>=0.7.17",
"semver>=3.0.2"
]
maintainers = [
{name = "Nicholas Wiltsie", email = "nwiltsie@mednet.ucla.edu"}
]
[project.scripts]
get-next-version = "bumpchanges:getversion.entrypoint"
finalize-release = "bumpchanges:finalize.entrypoint"
bump-changelog = "bumpchanges:bump.entrypoint"
alias-release = "bumpchanges:alias.entrypoint"
bump-version-files = "bumpchanges:updatefiles.entrypoint"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "bumpchanges/_version.py"
[tool.tox]
legacy_tox_ini = """
[tox]
env_list =
py3.10
py3.12
[testenv]
deps = pytest
commands = pytest tests --doctest-modules --junitxml=junit/test-results.xml
"""