-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
48 lines (41 loc) · 1.38 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
[build-system]
requires = ["maturin>=0.14,<0.15"]
build-backend = "maturin"
[project]
name = "portforward"
version = "0.7.0"
authors = [{ name = "Sebastian Ziemann", email = "[email protected]" }]
description = "Easy Kubernetes Port-Forward For Python"
readme = "README.rst"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
license = { text = "MIT License" }
keywords = ["portforward", "kubernetes", "k8s"]
[project.urls]
Documentation = "https://portforward.readthedocs.io"
Repository = "https://github.com/pytogo/portforward.git"
Changelog = "https://github.com/pytogo/portforward/blob/main/HISTORY.rst"
[tool.maturin]
features = ["pyo3/extension-module"]
module-name = "portforward._portforward"
python-source = "python"
[tool.bumpversion]
current_version = "0.7.0"
tag = true
commit = true
[[tool.bumpversion.files]]
filename = "pyproject.toml"
[[tool.bumpversion.files]]
filename = "python/portforward/__init__.py"
[[tool.bumpversion.files]]
filename = "Cargo.toml"