biblemate 0.0.14__tar.gz → 0.0.15__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: biblemate
3
- Version: 0.0.14
3
+ Version: 0.0.15
4
4
  Summary: BibleMate AI - Automate Your Bible Study
5
5
  Home-page: https://toolmate.ai
6
6
  Author: Eliran Wong
@@ -1,5 +1,10 @@
1
1
  import os
2
2
  from agentmake import PACKAGE_PATH, AGENTMAKE_USER_DIR, readTextFile
3
+ from pathlib import Path
4
+
5
+ # set up user_directory for customisation
6
+ user_directory = os.path.join(AGENTMAKE_USER_DIR, "biblemate")
7
+ Path(user_directory).mkdir(parents=True, exist_ok=True)
3
8
 
4
9
  def get_system_suggestion(master_plan: str) -> str:
5
10
  """
@@ -1,4 +1,4 @@
1
- agentmake>=1.0.64
1
+ agentmake>=1.0.65
2
2
  agentmakemcp>=0.0.8
3
3
  fastmcp[cli]
4
4
  rich
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: biblemate
3
- Version: 0.0.14
3
+ Version: 0.0.15
4
4
  Summary: BibleMate AI - Automate Your Bible Study
5
5
  Home-page: https://toolmate.ai
6
6
  Author: Eliran Wong
@@ -1,4 +1,4 @@
1
- agentmake>=1.0.64
1
+ agentmake>=1.0.65
2
2
  agentmakemcp>=0.0.8
3
3
  alive-progress
4
4
  fastmcp[cli]
@@ -27,7 +27,7 @@ with open(os.path.join(package, "requirements.txt"), "r") as fileObj:
27
27
  # https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/
28
28
  setup(
29
29
  name=package,
30
- version="0.0.14",
30
+ version="0.0.15",
31
31
  python_requires=">=3.8, <3.13",
32
32
  description=f"BibleMate AI - Automate Your Bible Study",
33
33
  long_description=long_description,
File without changes
File without changes