-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
37 lines (31 loc) · 982 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "zafkiel"
version = "0.2.1"
description = "A cross-platform UI automation framework based on Airtest and StarRailCopilot."
authors = [{name = "Aues6uen11Z"}]
readme = "README.md"
license = {text = "GPL-3.0 license"}
requires-python = ">=3.6"
dependencies = [
"airtest == 1.3.3",
"pyautogui == 0.9.54",
"loguru == 0.7.2",
"pponnxcr == 2.1"
]
[project.urls]
Homepage = "https://github.com/Aues6uen11Z/Zafkiel"
[project.optional-dependencies]
dev = ["bumpver", "pip-tools"]
[tool.bumpver]
current_version = "0.2.1"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "chore: bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"zafkiel/__init__.py" = ["{version}"]