-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
82 lines (76 loc) · 2.1 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
79
80
81
82
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
# Project Metadata
# ================
name = "pycomex"
version = "0.14.0"
description = "Python Computational Experiments"
readme = "README.rst"
authors = [
{name = "Jonas Teufel", email = "[email protected]"},
]
maintainers = [
{name = "Jonas Teufel", email = "[email protected]"},
]
license = {text = "MIT License"}
keywords = [
"computational experiments",
"data science",
"maschine learning",
"academia"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
# Project Dependencies
# ====================
requires_python = ">=3.10"
dependencies = [
"click>=7.1.2,<8.0.0",
"jinja2>=3.0.3,<4.0.0",
"numpy>=1.22.0,<2.0.0",
"matplotlib>=3.5.3,<4.0.0",
"psutil>=5.7.2,<6.0.0",
"moviepy>=1.0.3,<2.0.0",
"rich-click>=1.8.0,<1.9.0",
"desktop-notifier>=5.0.1,<6.0.0",
"rich-argparse>=1.0.0,<2.0.0",
]
# Executable Scripts
# ==================
pycomex = "pycomex.cli:cli"
# Configuration of Build System (Hatchling)
# =========================================
[tool.hatchling.build]
skip_excluded_dirs = true
# Version Bumping
# ===============
[tool.bumpversion]
current_version = "0.14.0"
parse = "(?<![=<>])(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = true
ignore_missing_version = true
tag = false
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = true
commit = false
message = "Bump version: {current_version} → {new_version}"
commit_args = ""
files = [
{filename = "pyproject.toml", search="version = \"{current_version}\"", replace="version = \"{new_version}\""},
{filename = "README.rst"},
{filename = "pycomex/VERSION"},
]