-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (94 loc) · 2.47 KB
/
pyproject.toml
File metadata and controls
104 lines (94 loc) · 2.47 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[project]
name = "niapy"
version = "2.7.0"
description = "Python micro framework for building nature-inspired algorithms."
authors = [{ name = "NiaOrg", email = "niapy.organization@gmail.com" }]
requires-python = ">=3.11"
readme = "README.md"
license = "MIT"
keywords = [
"nature-inspired algorithms",
"evolutionary algorithms",
"swarm intelligence",
"optimization",
]
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
dependencies = [
"numpy>=2.3.5",
"pandas>=2.3.3",
"openpyxl>=3.1.5",
"matplotlib>=3.10.8",
]
[project.urls]
Homepage = "https://github.com/NiaOrg/NiaPy"
Repository = "https://github.com/NiaOrg/NiaPy"
Documentation = "https://niapy.org/en/stable/"
[dependency-groups]
dev = [
"pytest>=9.0.0",
"pytest-cov>=7.0.0",
"pytest-randomly>=4.0.1",
]
docs = [
"sphinx>=8.2.3",
"sphinx-rtd-theme>=3.0.2",
]
release = [
"bump-my-version>=1.2.4",
"git-changelog>=2.7.0",
"pandoc>=2.4",
]
[tool.uv.build-backend]
source-include = [
"LICENSE",
"CHANGELOG.md",
"CITATION.cff",
]
[build-system]
requires = ["uv_build>=0.9.17,<0.10.0"]
build-backend = "uv_build"
[tool.bumpversion]
current_version = "2.7.0"
allow_dirty = true
commit = true
tag = true
tag_name = "v{new_version}"
parse = '(?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))(\-?((rc)?(?P<rc>\d+))?)'
serialize = [
"{major}.{minor}.{patch}rc{rc}",
"{major}.{minor}.{patch}"
]
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = "version = \"{current_version}\""
replace = "version = \"{new_version}\""
[[tool.bumpversion.files]]
filename = "src/niapy/__init__.py"
search = "__version__ = \"{current_version}\""
replace = "__version__ = \"{new_version}\""
[[tool.bumpversion.files]]
filename = "docs/source/conf.py"
search = "release = u'{current_version}'"
replace = "release = u'{new_version}'"
[tool.git-changelog]
convention = "basic"
in-place = true
marker-line = "<!-- insertion marker -->"
output = "CHANGELOG.md"
parse-refs = true
parse-trailers = true
repository = "."
provider = "github"
template = "keepachangelog"