-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (52 loc) · 1.66 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
48
49
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "corems-gui"
version = "0.1.0"
description = "PySide6 desktop GUI for FT-ICR MS direct infusion processing"
requires-python = ">=3.10"
dependencies = [
# CoreMS is installed from the local source repo (editable) due to Python 3.13
# build compatibility — run: pip install -e /path/to/corems --no-deps
# then: pip install -r requirements.txt
"PySide6>=6.5.0",
"matplotlib>=3.7.0",
"pandas>=1.5.0",
"openpyxl>=3.1.0",
"anthropic>=0.40.0",
"mcp[cli]>=1.8",
"httpx>=0.27",
"openai>=1.30.0",
"PyJWT>=2.8",
"CoreMS>=3.12"
]
[project.scripts]
corems-gui = "corems_gui:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["corems_gui*"]
[tool.setuptools.package-data]
corems_gui = ["qml/*.qml"]
# ---------------------------------------------------------------------------
# bump-my-version
# ---------------------------------------------------------------------------
[tool.bumpversion]
current_version = "0.1.0"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
commit = true
tag = true
tag_name = "v{new_version}"
tag_message = "Release version {new_version}"
message = "chore: bump version {current_version} → {new_version}"
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[[tool.bumpversion.files]]
filename = "corems_gui/__init__.py"
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'