Skip to content

Commit 6d471b8

Browse files
author
Tom Softreck
committed
Release version 0.1.50
1 parent 8893b70 commit 6d471b8

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.1.50] - 2025-04-16
6+
57
## [0.1.49] - 2025-04-16
68

79
## [0.1.48] - 2025-04-16

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# Configuration setup
1919
setup(
2020
name="pyfunc2",
21-
version="0.1.47",
21+
version="0.1.48",
2222
description="libs for cameramonit, ocr, fin-officer, cfo, and other projects",
2323
long_description=LONG_DESCRIPTION,
2424
long_description_content_type="text/markdown",
@@ -36,6 +36,10 @@
3636
},
3737
packages=find_packages(where="src"),
3838
package_dir={"": "src"},
39+
install_requires=[
40+
line.strip() for line in open("requirements.txt")
41+
if line.strip() and not line.startswith("#")
42+
],
3943
license="Apache-2.0", # Use simple string format
4044
license_files=("LICENSE"), # Empty tuple to explicitly prevent license files
4145
keywords=["python", "pyfunc", "pyfunc2", "pyfunc3", "pyfunc"],

setup.py.bak

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ except FileNotFoundError:
1818
# Configuration setup
1919
setup(
2020
name="pyfunc2",
21-
version="0.1.46",
21+
version="0.1.47",
2222
description="libs for cameramonit, ocr, fin-officer, cfo, and other projects",
2323
long_description=LONG_DESCRIPTION,
2424
long_description_content_type="text/markdown",
@@ -36,6 +36,10 @@ setup(
3636
},
3737
packages=find_packages(where="src"),
3838
package_dir={"": "src"},
39+
install_requires=[
40+
line.strip() for line in open("requirements.txt")
41+
if line.strip() and not line.startswith("#")
42+
],
3943
license="Apache-2.0", # Use simple string format
4044
license_files=("LICENSE"), # Empty tuple to explicitly prevent license files
4145
keywords=["python", "pyfunc", "pyfunc2", "pyfunc3", "pyfunc"],

0 commit comments

Comments
 (0)