matlabpy 0.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- matlabpy-0.0.3/PKG-INFO +26 -0
- matlabpy-0.0.3/README.md +15 -0
- matlabpy-0.0.3/pyproject.toml +19 -0
- matlabpy-0.0.3/src/matlabpy/__init__.py +0 -0
matlabpy-0.0.3/PKG-INFO
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: matlabpy
|
|
3
|
+
Version: 0.0.3
|
|
4
|
+
Summary: A Python library for MATLAB integration
|
|
5
|
+
Author: Daniel F. Hernández Gardiol
|
|
6
|
+
Author-email: dan.fhg@gmail.com
|
|
7
|
+
Requires-Python: >=3.14
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
matpy.py — A lightweight Python library that mimics core MATLAB matrix syntax & operators
|
|
13
|
+
|
|
14
|
+
To publish a new version:
|
|
15
|
+
# 1. Bump the version (e.g., to 0.0.2)
|
|
16
|
+
poetry version patch
|
|
17
|
+
|
|
18
|
+
# 2. Commit the change to pyproject.toml
|
|
19
|
+
git commit -am "Bump version to $(poetry version --short)"
|
|
20
|
+
|
|
21
|
+
# 3. Create a git tag for the new version
|
|
22
|
+
git tag v$(poetry version --short)
|
|
23
|
+
|
|
24
|
+
# 4. Push the commit and the tag to GitHub
|
|
25
|
+
git push origin main
|
|
26
|
+
git push origin v$(poetry version --short)
|
matlabpy-0.0.3/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
matpy.py — A lightweight Python library that mimics core MATLAB matrix syntax & operators
|
|
2
|
+
|
|
3
|
+
To publish a new version:
|
|
4
|
+
# 1. Bump the version (e.g., to 0.0.2)
|
|
5
|
+
poetry version patch
|
|
6
|
+
|
|
7
|
+
# 2. Commit the change to pyproject.toml
|
|
8
|
+
git commit -am "Bump version to $(poetry version --short)"
|
|
9
|
+
|
|
10
|
+
# 3. Create a git tag for the new version
|
|
11
|
+
git tag v$(poetry version --short)
|
|
12
|
+
|
|
13
|
+
# 4. Push the commit and the tag to GitHub
|
|
14
|
+
git push origin main
|
|
15
|
+
git push origin v$(poetry version --short)
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "matlabpy"
|
|
3
|
+
version = "0.0.3"
|
|
4
|
+
description = "A Python library for MATLAB integration"
|
|
5
|
+
repository = "https://github.com/wealing/matlabpy"
|
|
6
|
+
authors = [
|
|
7
|
+
{name = "Daniel F. Hernández Gardiol",email = "dan.fhg@gmail.com"}
|
|
8
|
+
]
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.14"
|
|
11
|
+
dependencies = [
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[tool.poetry]
|
|
15
|
+
packages = [{include = "matlabpy", from = "src"}]
|
|
16
|
+
|
|
17
|
+
[build-system]
|
|
18
|
+
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
19
|
+
build-backend = "poetry.core.masonry.api"
|
|
File without changes
|