File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,5 +5,9 @@ tag = True
55tag_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}"
Original file line number Diff line number Diff line change 11[tool .poetry ]
2- name = " ed-rvfl-sc" # Hyphenated name for PyPI
2+ name = " ed-rvfl-sc"
33version = " 0.1.0"
44description = " 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>" ]
66license = " MIT"
77readme = " README.md"
8- packages = [{ include = " ed_rvfl_sc" , from = " src" }] # Updated to underscore name
8+ packages = [{ include = " ed_rvfl_sc" , from = " src" }]
99classifiers = [
1010 " Development Status :: 3 - Alpha" ,
1111 " Intended Audience :: Science/Research" ,
@@ -29,27 +29,14 @@ Repository = "https://github.com/yourusername/ed-rvfl-sc"
2929python = " ^3.8"
3030numpy = " ^1.24.3"
3131scikit-learn = " ^1.3.0"
32- keras = " ^3.0" # Added Keras dependency
32+ keras = " ^3.0"
3333
3434[tool .poetry .group .dev .dependencies ]
3535pytest = " ^7.4.0"
3636bump2version = " ^1.0.1"
3737twine = " ^4.0.2"
3838build = " ^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 ]
5441requires = [" poetry-core" ]
5542build-backend = " poetry.core.masonry.api"
You can’t perform that action at this time.
0 commit comments