plexus-python-common 1.0.7__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.

Potentially problematic release.


This version of plexus-python-common might be problematic. Click here for more details.

Files changed (65) hide show
  1. plexus_python_common-1.0.7/.editorconfig +80 -0
  2. plexus_python_common-1.0.7/.github/workflows/pr.yml +32 -0
  3. plexus_python_common-1.0.7/.github/workflows/push.yml +38 -0
  4. plexus_python_common-1.0.7/.gitignore +187 -0
  5. plexus_python_common-1.0.7/MANIFEST.in +1 -0
  6. plexus_python_common-1.0.7/PKG-INFO +29 -0
  7. plexus_python_common-1.0.7/README.md +4 -0
  8. plexus_python_common-1.0.7/VERSION +1 -0
  9. plexus_python_common-1.0.7/pyproject.toml +87 -0
  10. plexus_python_common-1.0.7/resources/unittest/jsonutils/dummy.0.jsonl +10 -0
  11. plexus_python_common-1.0.7/resources/unittest/jsonutils/dummy.1.jsonl +10 -0
  12. plexus_python_common-1.0.7/resources/unittest/jsonutils/dummy.2.jsonl +10 -0
  13. plexus_python_common-1.0.7/resources/unittest/shutils/0-dummy +0 -0
  14. plexus_python_common-1.0.7/resources/unittest/shutils/1-dummy +0 -0
  15. plexus_python_common-1.0.7/resources/unittest/shutils/2-dummy +0 -0
  16. plexus_python_common-1.0.7/resources/unittest/shutils/dummy.0.0.jsonl +0 -0
  17. plexus_python_common-1.0.7/resources/unittest/shutils/dummy.0.0.vol-0.jsonl +0 -0
  18. plexus_python_common-1.0.7/resources/unittest/shutils/dummy.0.jsonl +10 -0
  19. plexus_python_common-1.0.7/resources/unittest/shutils/dummy.1.1.jsonl +0 -0
  20. plexus_python_common-1.0.7/resources/unittest/shutils/dummy.1.1.vol-1.jsonl +0 -0
  21. plexus_python_common-1.0.7/resources/unittest/shutils/dummy.1.jsonl +10 -0
  22. plexus_python_common-1.0.7/resources/unittest/shutils/dummy.2.2.jsonl +0 -0
  23. plexus_python_common-1.0.7/resources/unittest/shutils/dummy.2.2.vol-2.jsonl +0 -0
  24. plexus_python_common-1.0.7/resources/unittest/shutils/dummy.2.jsonl +10 -0
  25. plexus_python_common-1.0.7/resources/unittest/shutils/dummy.csv.part0 +0 -0
  26. plexus_python_common-1.0.7/resources/unittest/shutils/dummy.csv.part1 +0 -0
  27. plexus_python_common-1.0.7/resources/unittest/shutils/dummy.csv.part2 +0 -0
  28. plexus_python_common-1.0.7/resources/unittest/shutils/dummy.txt +0 -0
  29. plexus_python_common-1.0.7/setup.cfg +4 -0
  30. plexus_python_common-1.0.7/setup.py +13 -0
  31. plexus_python_common-1.0.7/src/plexus/common/__init__.py +6 -0
  32. plexus_python_common-1.0.7/src/plexus/common/carto/OSMFile.py +259 -0
  33. plexus_python_common-1.0.7/src/plexus/common/carto/OSMNode.py +25 -0
  34. plexus_python_common-1.0.7/src/plexus/common/carto/OSMTags.py +101 -0
  35. plexus_python_common-1.0.7/src/plexus/common/carto/OSMWay.py +24 -0
  36. plexus_python_common-1.0.7/src/plexus/common/carto/__init__.py +11 -0
  37. plexus_python_common-1.0.7/src/plexus/common/config.py +84 -0
  38. plexus_python_common-1.0.7/src/plexus/common/pose.py +107 -0
  39. plexus_python_common-1.0.7/src/plexus/common/proj.py +305 -0
  40. plexus_python_common-1.0.7/src/plexus/common/utils/__init__.py +0 -0
  41. plexus_python_common-1.0.7/src/plexus/common/utils/bagutils.py +218 -0
  42. plexus_python_common-1.0.7/src/plexus/common/utils/datautils.py +195 -0
  43. plexus_python_common-1.0.7/src/plexus/common/utils/jsonutils.py +92 -0
  44. plexus_python_common-1.0.7/src/plexus/common/utils/ormutils.py +335 -0
  45. plexus_python_common-1.0.7/src/plexus/common/utils/s3utils.py +118 -0
  46. plexus_python_common-1.0.7/src/plexus/common/utils/shutils.py +234 -0
  47. plexus_python_common-1.0.7/src/plexus/common/utils/strutils.py +285 -0
  48. plexus_python_common-1.0.7/src/plexus_python_common.egg-info/PKG-INFO +29 -0
  49. plexus_python_common-1.0.7/src/plexus_python_common.egg-info/SOURCES.txt +63 -0
  50. plexus_python_common-1.0.7/src/plexus_python_common.egg-info/dependency_links.txt +1 -0
  51. plexus_python_common-1.0.7/src/plexus_python_common.egg-info/not-zip-safe +1 -0
  52. plexus_python_common-1.0.7/src/plexus_python_common.egg-info/requires.txt +23 -0
  53. plexus_python_common-1.0.7/src/plexus_python_common.egg-info/top_level.txt +1 -0
  54. plexus_python_common-1.0.7/test/plexus_test.py +13 -0
  55. plexus_python_common-1.0.7/test/plexus_tests/__init__.py +15 -0
  56. plexus_python_common-1.0.7/test/plexus_tests/common/carto/osm_file_test.py +96 -0
  57. plexus_python_common-1.0.7/test/plexus_tests/common/carto/osm_tags_test.py +196 -0
  58. plexus_python_common-1.0.7/test/plexus_tests/common/pose_test.py +66 -0
  59. plexus_python_common-1.0.7/test/plexus_tests/common/proj_test.py +184 -0
  60. plexus_python_common-1.0.7/test/plexus_tests/common/utils/bagutils_test.py +73 -0
  61. plexus_python_common-1.0.7/test/plexus_tests/common/utils/datautils_test.py +38 -0
  62. plexus_python_common-1.0.7/test/plexus_tests/common/utils/jsonutils_test.py +16 -0
  63. plexus_python_common-1.0.7/test/plexus_tests/common/utils/ormutils_test.py +106 -0
  64. plexus_python_common-1.0.7/test/plexus_tests/common/utils/shutils_test.py +267 -0
  65. plexus_python_common-1.0.7/test/plexus_tests/common/utils/strutils_test.py +676 -0
@@ -0,0 +1,80 @@
1
+ root = true
2
+
3
+ [*.py]
4
+ charset = utf-8
5
+ end_of_line = lf
6
+ insert_final_newline = true
7
+ trim_trailing_whitespace = true
8
+ indent_style = space
9
+ indent_size = 4
10
+
11
+ ij_python_align_collections_and_comprehensions = true
12
+ ij_python_align_multiline_imports = true
13
+ ij_python_align_multiline_parameters = true
14
+ ij_python_align_multiline_parameters_in_calls = true
15
+ ij_python_blank_line_at_file_end = true
16
+ ij_python_blank_lines_after_imports = 1
17
+ ij_python_blank_lines_after_local_imports = 0
18
+ ij_python_blank_lines_around_class = 1
19
+ ij_python_blank_lines_around_method = 1
20
+ ij_python_blank_lines_around_top_level_classes_functions = 2
21
+ ij_python_blank_lines_before_first_method = 0
22
+ ij_python_call_parameters_new_line_after_left_paren = false
23
+ ij_python_call_parameters_right_paren_on_new_line = false
24
+ ij_python_call_parameters_wrap = normal
25
+ ij_python_dict_alignment = 0
26
+ ij_python_dict_new_line_after_left_brace = false
27
+ ij_python_dict_new_line_before_right_brace = false
28
+ ij_python_dict_wrapping = 1
29
+ ij_python_from_import_new_line_after_left_parenthesis = false
30
+ ij_python_from_import_new_line_before_right_parenthesis = false
31
+ ij_python_from_import_parentheses_force_if_multiline = false
32
+ ij_python_from_import_trailing_comma_if_multiline = false
33
+ ij_python_from_import_wrapping = 1
34
+ ij_python_hang_closing_brackets = false
35
+ ij_python_keep_blank_lines_in_code = 1
36
+ ij_python_keep_blank_lines_in_declarations = 1
37
+ ij_python_keep_indents_on_empty_lines = false
38
+ ij_python_keep_line_breaks = true
39
+ ij_python_method_parameters_new_line_after_left_paren = false
40
+ ij_python_method_parameters_right_paren_on_new_line = false
41
+ ij_python_method_parameters_wrap = normal
42
+ ij_python_new_line_after_colon = false
43
+ ij_python_new_line_after_colon_multi_clause = true
44
+ ij_python_optimize_imports_always_split_from_imports = false
45
+ ij_python_optimize_imports_case_insensitive_order = false
46
+ ij_python_optimize_imports_join_from_imports_with_same_source = false
47
+ ij_python_optimize_imports_sort_by_type_first = true
48
+ ij_python_optimize_imports_sort_imports = true
49
+ ij_python_optimize_imports_sort_names_in_from_imports = true
50
+ ij_python_space_after_comma = true
51
+ ij_python_space_after_number_sign = true
52
+ ij_python_space_after_py_colon = true
53
+ ij_python_space_before_backslash = true
54
+ ij_python_space_before_comma = false
55
+ ij_python_space_before_for_semicolon = false
56
+ ij_python_space_before_lbracket = false
57
+ ij_python_space_before_method_call_parentheses = false
58
+ ij_python_space_before_method_parentheses = false
59
+ ij_python_space_before_number_sign = true
60
+ ij_python_space_before_py_colon = false
61
+ ij_python_space_within_empty_method_call_parentheses = false
62
+ ij_python_space_within_empty_method_parentheses = false
63
+ ij_python_spaces_around_additive_operators = true
64
+ ij_python_spaces_around_assignment_operators = true
65
+ ij_python_spaces_around_bitwise_operators = true
66
+ ij_python_spaces_around_eq_in_keyword_argument = false
67
+ ij_python_spaces_around_eq_in_named_parameter = false
68
+ ij_python_spaces_around_equality_operators = true
69
+ ij_python_spaces_around_multiplicative_operators = true
70
+ ij_python_spaces_around_power_operator = true
71
+ ij_python_spaces_around_relational_operators = true
72
+ ij_python_spaces_around_shift_operators = true
73
+ ij_python_spaces_within_braces = false
74
+ ij_python_spaces_within_brackets = false
75
+ ij_python_spaces_within_method_call_parentheses = false
76
+ ij_python_spaces_within_method_parentheses = false
77
+ ij_python_use_continuation_indent_for_arguments = false
78
+ ij_python_use_continuation_indent_for_collection_and_comprehensions = false
79
+ ij_python_use_continuation_indent_for_parameters = false
80
+ ij_python_wrap_long_lines = false
@@ -0,0 +1,32 @@
1
+ name: Pull Request
2
+
3
+ on:
4
+ pull_request:
5
+ branches: [ "master" ]
6
+
7
+ env:
8
+ BUILD_NUMBER: ${{ github.run_number }}
9
+
10
+ jobs:
11
+ build-python:
12
+ runs-on: ubuntu-latest
13
+ container:
14
+ image: ruyangshou/plexus-basedev-dev-python:latest
15
+ options: --user github
16
+ strategy:
17
+ matrix:
18
+ python-version: [ "3.11", "3.12", "3.13" ]
19
+ steps:
20
+ - name: Checkout
21
+ uses: actions/checkout@v4
22
+
23
+ - name: Setup Python
24
+ uses: actions/setup-python@v5
25
+ with:
26
+ python-version: "${{ matrix.python-version }}"
27
+
28
+ - name: Build and Test
29
+ run: |
30
+ python -m pip install --upgrade pip
31
+ python -m pip install .[test]
32
+ python -m pytest . --cov --cov-report xml --cov-config pyproject.toml
@@ -0,0 +1,38 @@
1
+ name: Push
2
+
3
+ on:
4
+ push:
5
+ branches: [ "master" ]
6
+
7
+ env:
8
+ BUILD_NUMBER: ${{ github.run_number }}
9
+
10
+ jobs:
11
+ push:
12
+ runs-on: ubuntu-latest
13
+ container:
14
+ image: ruyangshou/plexus-basedev-dev-python:latest
15
+ options: --user github
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
+
20
+ - name: Setup Python
21
+ uses: actions/setup-python@v5
22
+ with:
23
+ python-version: "3.13"
24
+
25
+ - name: Build and Upload
26
+ run: |
27
+ python -m pip install --upgrade pip build twine
28
+ python -m pip install .[test]
29
+ python -m pytest . --cov --cov-report xml --cov-config pyproject.toml
30
+ python -m build -sw .
31
+ python -m twine upload --username __token__ --password ${{ secrets.PYPI_TOKEN }} dist/*
32
+
33
+ - name: Upload Coverage Report
34
+ uses: codecov/codecov-action@v5
35
+ with:
36
+ token: ${{ secrets.CODECOV_TOKEN }}
37
+ slug: ${{ github.repository }}
38
+ fail_ci_if_error: true
@@ -0,0 +1,187 @@
1
+ # System junks
2
+ *.[oa]
3
+ *~
4
+ .DS_Store
5
+ Thumbs.db
6
+
7
+ # Git
8
+ .git/
9
+
10
+ # General
11
+ target/
12
+ output/
13
+ build/
14
+ opt/
15
+ gen/
16
+ tmp/
17
+ temp/
18
+
19
+ # IDEs
20
+ *.iml
21
+ .idea/
22
+ .classpath
23
+ .project
24
+ .settings/
25
+ .vscode/
26
+
27
+
28
+ # Byte-compiled / optimized / DLL files
29
+ __pycache__/
30
+ *.py[cod]
31
+ *$py.class
32
+
33
+ # C extensions
34
+ *.so
35
+
36
+ # Distribution / packaging
37
+ .Python
38
+ build/
39
+ develop-eggs/
40
+ dist/
41
+ downloads/
42
+ eggs/
43
+ .eggs/
44
+ lib/
45
+ lib64/
46
+ parts/
47
+ sdist/
48
+ var/
49
+ wheels/
50
+ share/python-wheels/
51
+ *.egg-info/
52
+ .installed.cfg
53
+ *.egg
54
+ MANIFEST
55
+
56
+ # PyInstaller
57
+ # Usually these files are written by a python script from a template
58
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
59
+ *.manifest
60
+ *.spec
61
+
62
+ # Installer logs
63
+ pip-log.txt
64
+ pip-delete-this-directory.txt
65
+
66
+ # Unit test / coverage reports
67
+ htmlcov/
68
+ .tox/
69
+ .nox/
70
+ .coverage
71
+ .coverage.*
72
+ .cache
73
+ nosetests.xml
74
+ coverage.xml
75
+ *.cover
76
+ *.py,cover
77
+ .hypothesis/
78
+ .pytest_cache/
79
+ cover/
80
+
81
+ # Translations
82
+ *.mo
83
+ *.pot
84
+
85
+ # Django stuff:
86
+ *.log
87
+ local_settings.py
88
+ db.sqlite3
89
+ db.sqlite3-journal
90
+
91
+ # Flask stuff:
92
+ instance/
93
+ .webassets-cache
94
+
95
+ # Scrapy stuff:
96
+ .scrapy
97
+
98
+ # Sphinx documentation
99
+ docs/_build/
100
+
101
+ # PyBuilder
102
+ .pybuilder/
103
+ target/
104
+
105
+ # Jupyter Notebook
106
+ .ipynb_checkpoints
107
+
108
+ # IPython
109
+ profile_default/
110
+ ipython_config.py
111
+
112
+ # pyenv
113
+ # For a library or package, you might want to ignore these files since the code is
114
+ # intended to run in multiple environments; otherwise, check them in:
115
+ # .python-version
116
+
117
+ # pipenv
118
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
119
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
120
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
121
+ # install all needed dependencies.
122
+ #Pipfile.lock
123
+
124
+ # poetry
125
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
126
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
127
+ # commonly ignored for libraries.
128
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
129
+ #poetry.lock
130
+
131
+ # pdm
132
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
133
+ #pdm.lock
134
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
135
+ # in version control.
136
+ # https://pdm.fming.dev/#use-with-ide
137
+ .pdm.toml
138
+
139
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
140
+ __pypackages__/
141
+
142
+ # Celery stuff
143
+ celerybeat-schedule
144
+ celerybeat.pid
145
+
146
+ # SageMath parsed files
147
+ *.sage.py
148
+
149
+ # Environments
150
+ .env
151
+ .venv
152
+ env/
153
+ venv/
154
+ ENV/
155
+ env.bak/
156
+ venv.bak/
157
+
158
+ # Spyder project settings
159
+ .spyderproject
160
+ .spyproject
161
+
162
+ # Rope project settings
163
+ .ropeproject
164
+
165
+ # mkdocs documentation
166
+ /site
167
+
168
+ # mypy
169
+ .mypy_cache/
170
+ .dmypy.json
171
+ dmypy.json
172
+
173
+ # Pyre type checker
174
+ .pyre/
175
+
176
+ # pytype static type analyzer
177
+ .pytype/
178
+
179
+ # Cython debug symbols
180
+ cython_debug/
181
+
182
+ # PyCharm
183
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
184
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
185
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
186
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
187
+ #.idea/
@@ -0,0 +1 @@
1
+ include VERSION
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.4
2
+ Name: plexus-python-common
3
+ Version: 1.0.7
4
+ Classifier: Programming Language :: Python :: 3
5
+ Classifier: Programming Language :: Python :: 3.11
6
+ Classifier: Programming Language :: Python :: 3.12
7
+ Classifier: Programming Language :: Python :: 3.13
8
+ Requires-Python: <3.14,>=3.11
9
+ Requires-Dist: cloudpathlib>=0.21
10
+ Requires-Dist: lxml>=4.9
11
+ Requires-Dist: numpy>=1.26
12
+ Requires-Dist: pydantic>=2.8
13
+ Requires-Dist: pygeodesy>=24.10
14
+ Requires-Dist: pyparsing>=3.2
15
+ Requires-Dist: pyproj>=3.6
16
+ Requires-Dist: pyquaternion>=0.9
17
+ Requires-Dist: sqlalchemy>=2.0
18
+ Requires-Dist: sqlmodel
19
+ Requires-Dist: rich>=13.9
20
+ Requires-Dist: ujson>=5.9
21
+ Requires-Dist: iker-python-common[all]>=1.0
22
+ Provides-Extra: all
23
+ Requires-Dist: plexus-python-common; extra == "all"
24
+ Provides-Extra: test
25
+ Requires-Dist: ddt>=1.7; extra == "test"
26
+ Requires-Dist: pytest-cov>=5.0; extra == "test"
27
+ Requires-Dist: pytest-order>=1.3; extra == "test"
28
+ Requires-Dist: pytest-postgresql>=6.1; extra == "test"
29
+ Requires-Dist: pytest>=8.3; extra == "test"
@@ -0,0 +1,4 @@
1
+ # Plexus Python Common Module
2
+
3
+ [![codecov](https://codecov.io/gh/ruyangshou/plexus-python-common/graph/badge.svg?token=U8EPB2JZ70)](
4
+ https://codecov.io/gh/ruyangshou/plexus-python-common)
@@ -0,0 +1 @@
1
+ 1.0
@@ -0,0 +1,87 @@
1
+ [build-system]
2
+ requires = [
3
+ "setuptools>=75.0",
4
+ "setuptools-scm>=8.0",
5
+ "iker-python-setup>=1.0",
6
+ ]
7
+ build-backend = "setuptools.build_meta"
8
+
9
+ [dependency-groups]
10
+ dev = [
11
+ "cloudpathlib>=0.21",
12
+ "lxml>=4.9",
13
+ "numpy>=1.26",
14
+ "pydantic>=2.8",
15
+ "pygeodesy>=24.10",
16
+ "pyparsing>=3.2",
17
+ "pyproj>=3.6",
18
+ "pyquaternion>=0.9",
19
+ "sqlalchemy>=2.0",
20
+ "sqlmodel",
21
+ "rich>=13.9",
22
+ "ujson>=5.9",
23
+ "iker-python-common[all]>=1.0",
24
+ ]
25
+ test = [
26
+ "ddt>=1.7",
27
+ "pytest-cov>=5.0",
28
+ "pytest-order>=1.3",
29
+ "pytest-postgresql>=6.1",
30
+ "pytest>=8.3",
31
+ ]
32
+
33
+ [project]
34
+ name = "plexus-python-common"
35
+ dynamic = ["version"]
36
+ requires-python = ">=3.11,<3.14"
37
+ classifiers = [
38
+ "Programming Language :: Python :: 3",
39
+ "Programming Language :: Python :: 3.11",
40
+ "Programming Language :: Python :: 3.12",
41
+ "Programming Language :: Python :: 3.13",
42
+ ]
43
+ dependencies = [
44
+ "cloudpathlib>=0.21",
45
+ "lxml>=4.9",
46
+ "numpy>=1.26",
47
+ "pydantic>=2.8",
48
+ "pygeodesy>=24.10",
49
+ "pyparsing>=3.2",
50
+ "pyproj>=3.6",
51
+ "pyquaternion>=0.9",
52
+ "sqlalchemy>=2.0",
53
+ "sqlmodel",
54
+ "rich>=13.9",
55
+ "ujson>=5.9",
56
+ "iker-python-common[all]>=1.0",
57
+ ]
58
+
59
+ [project.optional-dependencies]
60
+ all = [
61
+ "plexus-python-common",
62
+ ]
63
+ test = [
64
+ "ddt>=1.7",
65
+ "pytest-cov>=5.0",
66
+ "pytest-order>=1.3",
67
+ "pytest-postgresql>=6.1",
68
+ "pytest>=8.3",
69
+ ]
70
+
71
+ [tool.setuptools]
72
+ package-dir = { "" = "src" }
73
+ zip-safe = false
74
+ include-package-data = true
75
+
76
+ [tool.setuptools.packages.find]
77
+ where = ["src"]
78
+ namespaces = true
79
+
80
+ [tool.pytest.ini_options]
81
+ pythonpath = ["src"]
82
+
83
+ [tool.coverage.run]
84
+ branch = true
85
+ include = [
86
+ "src/plexus/*",
87
+ ]
@@ -0,0 +1,10 @@
1
+ {"file": "dummy.0.jsonl"}
2
+ {"file": "dummy.0.jsonl"}
3
+ {"file": "dummy.0.jsonl"}
4
+ {"file": "dummy.0.jsonl"}
5
+ {"file": "dummy.0.jsonl"}
6
+ {"file": "dummy.0.jsonl"}
7
+ {"file": "dummy.0.jsonl"}
8
+ {"file": "dummy.0.jsonl"}
9
+ {"file": "dummy.0.jsonl"}
10
+ {"file": "dummy.0.jsonl"}
@@ -0,0 +1,10 @@
1
+ {"file": "dummy.1.jsonl"}
2
+ {"file": "dummy.1.jsonl"}
3
+ {"file": "dummy.1.jsonl"}
4
+ {"file": "dummy.1.jsonl"}
5
+ {"file": "dummy.1.jsonl"}
6
+ {"file": "dummy.1.jsonl"}
7
+ {"file": "dummy.1.jsonl"}
8
+ {"file": "dummy.1.jsonl"}
9
+ {"file": "dummy.1.jsonl"}
10
+ {"file": "dummy.1.jsonl"}
@@ -0,0 +1,10 @@
1
+ {"file": "dummy.2.jsonl"}
2
+ {"file": "dummy.2.jsonl"}
3
+ {"file": "dummy.2.jsonl"}
4
+ {"file": "dummy.2.jsonl"}
5
+ {"file": "dummy.2.jsonl"}
6
+ {"file": "dummy.2.jsonl"}
7
+ {"file": "dummy.2.jsonl"}
8
+ {"file": "dummy.2.jsonl"}
9
+ {"file": "dummy.2.jsonl"}
10
+ {"file": "dummy.2.jsonl"}
@@ -0,0 +1,10 @@
1
+ {"file": "dummy.0.jsonl"}
2
+ {"file": "dummy.0.jsonl"}
3
+ {"file": "dummy.0.jsonl"}
4
+ {"file": "dummy.0.jsonl"}
5
+ {"file": "dummy.0.jsonl"}
6
+ {"file": "dummy.0.jsonl"}
7
+ {"file": "dummy.0.jsonl"}
8
+ {"file": "dummy.0.jsonl"}
9
+ {"file": "dummy.0.jsonl"}
10
+ {"file": "dummy.0.jsonl"}
@@ -0,0 +1,10 @@
1
+ {"file": "dummy.1.jsonl"}
2
+ {"file": "dummy.1.jsonl"}
3
+ {"file": "dummy.1.jsonl"}
4
+ {"file": "dummy.1.jsonl"}
5
+ {"file": "dummy.1.jsonl"}
6
+ {"file": "dummy.1.jsonl"}
7
+ {"file": "dummy.1.jsonl"}
8
+ {"file": "dummy.1.jsonl"}
9
+ {"file": "dummy.1.jsonl"}
10
+ {"file": "dummy.1.jsonl"}
@@ -0,0 +1,10 @@
1
+ {"file": "dummy.2.jsonl"}
2
+ {"file": "dummy.2.jsonl"}
3
+ {"file": "dummy.2.jsonl"}
4
+ {"file": "dummy.2.jsonl"}
5
+ {"file": "dummy.2.jsonl"}
6
+ {"file": "dummy.2.jsonl"}
7
+ {"file": "dummy.2.jsonl"}
8
+ {"file": "dummy.2.jsonl"}
9
+ {"file": "dummy.2.jsonl"}
10
+ {"file": "dummy.2.jsonl"}
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,13 @@
1
+ import argparse
2
+
3
+ from iker.setup import setup, version_string
4
+
5
+ if __name__ == "__main__":
6
+ parser = argparse.ArgumentParser(description="setup script integrating dynamic version printer")
7
+ parser.add_argument("--print-version-string", action="store_true", help="print version string and exit")
8
+
9
+ args, _ = parser.parse_known_args()
10
+ if args.print_version_string:
11
+ print(version_string())
12
+ else:
13
+ setup()
@@ -0,0 +1,6 @@
1
+ import importlib.metadata
2
+
3
+ try:
4
+ __version__ = importlib.metadata.version("plexus-python-common")
5
+ except importlib.metadata.PackageNotFoundError:
6
+ __version__ = "unknown"