-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1.06 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "messagingclient"
dynamic = ["version"]
description = "Messaging Client"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [
{ name = "Akhilesh Halageri" },
{ name = "Keith Wiley" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"google-cloud-pubsub",
]
[project.urls]
Homepage = "https://github.com/seung-lab/messaging-client"
"Bug Tracker" = "https://github.com/seung-lab/messaging-client/issues"
[tool.setuptools.dynamic]
version = { attr = "messagingclient.__version__" }
[tool.setuptools.packages.find]
include = ["messagingclient*"]
[tool.bumpversion]
current_version = "0.4.0"
commit = true
tag = true
tag_name = "v{new_version}"
[[tool.bumpversion.files]]
filename = "messagingclient/__init__.py"
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'current_version = "{current_version}"'
replace = 'current_version = "{new_version}"'