pam-python 0.1.11__tar.gz → 0.1.12__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.
Files changed (34) hide show
  1. {pam_python-0.1.11/pam_python.egg-info → pam_python-0.1.12}/PKG-INFO +2 -1
  2. {pam_python-0.1.11 → pam_python-0.1.12}/pam/templates/service/service.test.tmpl +2 -2
  3. {pam_python-0.1.11 → pam_python-0.1.12/pam_python.egg-info}/PKG-INFO +2 -1
  4. {pam_python-0.1.11 → pam_python-0.1.12}/pam_python.egg-info/requires.txt +1 -0
  5. {pam_python-0.1.11 → pam_python-0.1.12}/setup.py +3 -2
  6. {pam_python-0.1.11 → pam_python-0.1.12}/LICENSE.txt +0 -0
  7. {pam_python-0.1.11 → pam_python-0.1.12}/README.md +0 -0
  8. {pam_python-0.1.11 → pam_python-0.1.12}/pam/__init__.py +0 -0
  9. {pam_python-0.1.11 → pam_python-0.1.12}/pam/api.py +0 -0
  10. {pam_python-0.1.11 → pam_python-0.1.12}/pam/cli.py +0 -0
  11. {pam_python-0.1.11 → pam_python-0.1.12}/pam/interface_task_manager.py +0 -0
  12. {pam_python-0.1.11 → pam_python-0.1.12}/pam/models/__init__.py +0 -0
  13. {pam_python-0.1.11 → pam_python-0.1.12}/pam/models/request_command.py +0 -0
  14. {pam_python-0.1.11 → pam_python-0.1.12}/pam/server.py +0 -0
  15. {pam_python-0.1.11 → pam_python-0.1.12}/pam/service.py +0 -0
  16. {pam_python-0.1.11 → pam_python-0.1.12}/pam/task_manager.py +0 -0
  17. {pam_python-0.1.11 → pam_python-0.1.12}/pam/temp_file_utils.py +0 -0
  18. {pam_python-0.1.11 → pam_python-0.1.12}/pam/templates/buildcmd/pamb +0 -0
  19. {pam_python-0.1.11 → pam_python-0.1.12}/pam/templates/buildcmd/pamb-base.sh +0 -0
  20. {pam_python-0.1.11 → pam_python-0.1.12}/pam/templates/docker/Dockerfile +0 -0
  21. {pam_python-0.1.11 → pam_python-0.1.12}/pam/templates/init/dockerignore.tmpl +0 -0
  22. {pam_python-0.1.11 → pam_python-0.1.12}/pam/templates/init/gitignore.tmpl +0 -0
  23. {pam_python-0.1.11 → pam_python-0.1.12}/pam/templates/init/main.tmpl +0 -0
  24. {pam_python-0.1.11 → pam_python-0.1.12}/pam/templates/init/pylintrc.tmpl +0 -0
  25. {pam_python-0.1.11 → pam_python-0.1.12}/pam/templates/service/functions.tmpl +0 -0
  26. {pam_python-0.1.11 → pam_python-0.1.12}/pam/templates/service/service.yaml +0 -0
  27. {pam_python-0.1.11 → pam_python-0.1.12}/pam/templates/service/service_class.tmpl +0 -0
  28. {pam_python-0.1.11 → pam_python-0.1.12}/pam/tester_task.py +0 -0
  29. {pam_python-0.1.11 → pam_python-0.1.12}/pam/utils.py +0 -0
  30. {pam_python-0.1.11 → pam_python-0.1.12}/pam_python.egg-info/SOURCES.txt +0 -0
  31. {pam_python-0.1.11 → pam_python-0.1.12}/pam_python.egg-info/dependency_links.txt +0 -0
  32. {pam_python-0.1.11 → pam_python-0.1.12}/pam_python.egg-info/entry_points.txt +0 -0
  33. {pam_python-0.1.11 → pam_python-0.1.12}/pam_python.egg-info/top_level.txt +0 -0
  34. {pam_python-0.1.11 → pam_python-0.1.12}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: pam-python
3
- Version: 0.1.11
3
+ Version: 0.1.12
4
4
  Summary: Pam Python Library
5
5
  Home-page: https://github.com/heart/pam-python
6
6
  Author: Narongrit Kanhanoi
@@ -25,6 +25,7 @@ Requires-Dist: dask>=2024.12.1
25
25
  Requires-Dist: dask-expr>=1.1.21
26
26
  Requires-Dist: requests>=2.32.3
27
27
  Requires-Dist: gunicorn>=23.0.0
28
+ Requires-Dist: pyarrow>=19.0.1
28
29
  Dynamic: author
29
30
  Dynamic: author-email
30
31
  Dynamic: classifier
@@ -20,7 +20,7 @@ TempfileUtils.temp_datasource_path = f"{MOCK_DIR}/app/data/data_sources"
20
20
 
21
21
 
22
22
  # ==================== UTILITY FUNCTIONS ====================
23
- def __create_mock_csv(page, mockDir):
23
+ def create_mock_csv(page, mockDir):
24
24
  fake = Faker()
25
25
  for i in range(page):
26
26
  data = {
@@ -71,7 +71,7 @@ class TestService1(unittest.TestCase):
71
71
 
72
72
  def setUp(self):
73
73
  createMockDir(MOCK_DIR)
74
- __create_mock_csv(TOTAL_PAGES, MOCK_DIR)
74
+ create_mock_csv(TOTAL_PAGES, MOCK_DIR)
75
75
 
76
76
  self.testerTask = TesterTask()
77
77
  self.testerTask.set_on_upload_result(on_upload_result)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: pam-python
3
- Version: 0.1.11
3
+ Version: 0.1.12
4
4
  Summary: Pam Python Library
5
5
  Home-page: https://github.com/heart/pam-python
6
6
  Author: Narongrit Kanhanoi
@@ -25,6 +25,7 @@ Requires-Dist: dask>=2024.12.1
25
25
  Requires-Dist: dask-expr>=1.1.21
26
26
  Requires-Dist: requests>=2.32.3
27
27
  Requires-Dist: gunicorn>=23.0.0
28
+ Requires-Dist: pyarrow>=19.0.1
28
29
  Dynamic: author
29
30
  Dynamic: author-email
30
31
  Dynamic: classifier
@@ -7,3 +7,4 @@ dask>=2024.12.1
7
7
  dask-expr>=1.1.21
8
8
  requests>=2.32.3
9
9
  gunicorn>=23.0.0
10
+ pyarrow>=19.0.1
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="pam-python",
5
- version="0.1.11",
5
+ version="0.1.12",
6
6
  author="Narongrit Kanhanoi",
7
7
  author_email="narongrit@pams.ai",
8
8
  description="Pam Python Library",
@@ -32,7 +32,8 @@ setup(
32
32
  "dask>=2024.12.1",
33
33
  "dask-expr>=1.1.21",
34
34
  "requests>=2.32.3",
35
- "gunicorn>=23.0.0"
35
+ "gunicorn>=23.0.0",
36
+ "pyarrow>=19.0.1"
36
37
  ],
37
38
  entry_points={
38
39
  "console_scripts": [
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes