Skip to content

Commit 27918c1

Browse files
committed
initial-commit
1 parent 82bb205 commit 27918c1

2 files changed

Lines changed: 8 additions & 17 deletions

File tree

.bumpversion.cfg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,9 @@ tag = True
55
tag_name = v{new_version}
66

77
[bumpversion:file:pyproject.toml]
8+
search = version = "{current_version}"
9+
replace = version = "{new_version}"
810

911
[bumpversion:file:src/ed_rvfl_sc/__init__.py]
12+
search = __version__ = "{current_version}"
13+
replace = __version__ = "{new_version}"

pyproject.toml

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[tool.poetry]
2-
name = "ed-rvfl-sc" # Hyphenated name for PyPI
2+
name = "ed-rvfl-sc"
33
version = "0.1.0"
44
description = "Ensemble Deep Random Vector Functional Link (edRVFL) for regression and classification with Keras compatibility"
5-
authors = ["L‑A‑Sandhu <laeeq.aslam.100@gmail.com>"]
5+
authors = ["L-A-Sandhu <laeeq.aslam.100@gmail.com>"]
66
license = "MIT"
77
readme = "README.md"
8-
packages = [{ include = "ed_rvfl_sc", from = "src" }] # Updated to underscore name
8+
packages = [{ include = "ed_rvfl_sc", from = "src" }]
99
classifiers = [
1010
"Development Status :: 3 - Alpha",
1111
"Intended Audience :: Science/Research",
@@ -29,27 +29,14 @@ Repository = "https://github.com/yourusername/ed-rvfl-sc"
2929
python = "^3.8"
3030
numpy = "^1.24.3"
3131
scikit-learn = "^1.3.0"
32-
keras = "^3.0" # Added Keras dependency
32+
keras = "^3.0"
3333

3434
[tool.poetry.group.dev.dependencies]
3535
pytest = "^7.4.0"
3636
bump2version = "^1.0.1"
3737
twine = "^4.0.2"
3838
build = "^1.0.3"
3939

40-
[tool.bumpversion]
41-
current_version = "0.1.0"
42-
parse = "(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)"
43-
serialize = ["{major}.{minor}.{patch}"]
44-
45-
[tool.bumpversion.file:pyproject.toml]
46-
search = "version = \"{current_version}\""
47-
replace = "version = \"{new_version}\""
48-
49-
[tool.bumpversion.file:src/ed_rvfl_sc/__init__.py]
50-
search = "__version__ = \"{current_version}\""
51-
replace = "__version__ = \"{new_version}\""
52-
5340
[build-system]
5441
requires = ["poetry-core"]
5542
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)