-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 766 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 766 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bumpy"
version = "0.0.4"
authors = [
{ name="David Hebert", email="david@ddhebert.com" },
]
description = "Bump and change package version numbers."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Operating System :: OS Independent",
"Topic :: Software Development :: Version Control",
"Topic :: Utilities",
]
keywords = [
'bump',
'semantic',
'versioning',
'version'
]
dependencies = [
]
[project.scripts]
bumpy = "bumpy.cli:main"
[project.urls]
"repository" = "https://github.com/dd-hebert/bumpy"
"bug tracker" = "https://github.com/dd-hebert/bumpy/issues"