forked from aaroncherian/postprocessing_gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (45 loc) · 1.5 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
# pyproject.toml
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "skellyforge"
description = "Basic template of a python repository"
readme = "README.md"
authors = [{ name = "skellyforge", email = "info@freemocap.org" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", #https://www.gnu.org/philosophy/open-source-misses-the-point.en.html
"Programming Language :: Python",
"Programming Language :: Python :: 3",
] #additional classifiers can be found here: https://pypi.org/classifiers/
keywords = ["basic",
"template",
"python",
"repository"] #change these to your project keywords
dependencies = [
"numpy==1.26.2",
"pyside6==6.6.*",
"pyqtgraph==0.13.3",
"scipy==1.11.4",
"rich==13.7.0",
"pandas==2.1.4",
"matplotlib==3.8.2",
"toml==0.10.2",
]
requires-python = ">=3.9,<3.13"
dynamic = ["version"]
[project.optional-dependencies]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest"]
[tool.bumpver] #bump the version by entering `bumpver update` in the terminal
current_version = "v2024.12.1009"
version_pattern = "vYYYY.0M.BUILD[-TAG]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = ["{version}"]
"skellyforge/__init__.py" = ["{version}"]
[project.scripts]
skellyforge = "skellyforge.__main__:run"