-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
78 lines (56 loc) · 1.89 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
[project]
name = "okta-cli"
authors = [{ name = "Axel Bock", email = "[email protected]" }]
version = "18.1.2"
requires-python = ">=3.7"
description = "An Okta command line interface for scripting and quickly performing routine tasks"
readme = "README.md"
license = { text = "MIT License" }
keywords = ["okta", "cli"]
classifiers = [
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"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 :: Implementation :: CPython",
]
dynamic = ["dependencies"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
# see here: https://is.gd/dzQdSd
# not used in favor of auto discovery, see here: https://tinyurl.com/2xyemdhd
#package_dir = {"" = "src"}
[tool.setuptools.dynamic.dependencies]
file = "requirements.txt"
[tool.setuptools.dynamic.optional-dependencies]
dev = {file = "requirements-dev.txt"}
[project.urls]
Homepage = "https://github.com/flypenguin/okta-cli"
Repository = "https://github.com/flypenguin/okta-cli"
[project.scripts]
okta-cli = "oktacli:cli_main"
[tool.bumpversion]
current_version = "18.1.2"
commit = true
tag = true
message = "build(release): {current_version} -> {new_version}"
tag_message = ""
no_sign_tags = true
[[tool.bumpversion.files]]
filename = "src/oktacli/cli.py"
search = "{current_version}"
replace = "{new_version}"
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = "{current_version}"
replace = "{new_version}"
[tool.pytest.ini_options]
pythonpath = ["src"]