datashare-python 0.2.12__tar.gz → 0.2.13__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.
- {datashare_python-0.2.12 → datashare_python-0.2.13}/PKG-INFO +4 -3
- {datashare_python-0.2.12 → datashare_python-0.2.13}/pyproject.toml +4 -3
- {datashare_python-0.2.12 → datashare_python-0.2.13}/uv.lock +4 -2
- {datashare_python-0.2.12 → datashare_python-0.2.13}/.gitignore +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/README.md +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/.gitignore +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/__init__.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/__main__.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/cli/__init__.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/cli/local.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/cli/project.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/cli/task.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/cli/utils.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/cli/worker.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/config.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/conftest.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/constants.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/dependencies.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/discovery.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/exceptions.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/local_client.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/objects.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/task_client.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/template.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/types_.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/utils.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/datashare_python/worker.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/tests/__init__.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/tests/cli/test_project.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/tests/cli/test_tasks.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/tests/cli/test_worker.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/tests/conftest.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/tests/test_discovery.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/tests/test_object.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/tests/test_task_client.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/tests/test_template.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/tests/test_utils.py +0 -0
- {datashare_python-0.2.12 → datashare_python-0.2.13}/tests/test_worker.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: datashare-python
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.13
|
|
4
4
|
Summary: Manage Python tasks and local resources in Datashare
|
|
5
5
|
Project-URL: Homepage, https://icij.github.io/datashare-python/
|
|
6
6
|
Project-URL: Documentation, https://icij.github.io/datashare-python/
|
|
@@ -11,10 +11,11 @@ Requires-Python: <4,>=3.11
|
|
|
11
11
|
Requires-Dist: aiohttp~=3.11.9
|
|
12
12
|
Requires-Dist: aiostream~=0.6.4
|
|
13
13
|
Requires-Dist: alive-progress~=3.2.0
|
|
14
|
-
Requires-Dist: datashare-worker-template
|
|
14
|
+
Requires-Dist: datashare-worker-template~=0.1
|
|
15
|
+
Requires-Dist: hatchling~=1.27.0
|
|
15
16
|
Requires-Dist: icij-common[elasticsearch]~=0.7.3
|
|
16
17
|
Requires-Dist: nest-asyncio~=1.6.0
|
|
17
18
|
Requires-Dist: python-json-logger~=4.0.0
|
|
18
19
|
Requires-Dist: temporalio~=1.23.0
|
|
19
|
-
Requires-Dist: tomlkit
|
|
20
|
+
Requires-Dist: tomlkit~=0.14.0
|
|
20
21
|
Requires-Dist: typer~=0.15.4
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "datashare-python"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.13"
|
|
4
4
|
description = "Manage Python tasks and local resources in Datashare"
|
|
5
5
|
authors = [
|
|
6
6
|
{ name = "Clément Doumouro", email = "cdoumouro@icij.org" },
|
|
@@ -18,8 +18,9 @@ dependencies = [
|
|
|
18
18
|
"nest-asyncio~=1.6.0",
|
|
19
19
|
"temporalio~=1.23.0",
|
|
20
20
|
"typer~=0.15.4",
|
|
21
|
-
"datashare-worker-template",
|
|
22
|
-
"tomlkit
|
|
21
|
+
"datashare-worker-template~=0.1",
|
|
22
|
+
"tomlkit~=0.14.0",
|
|
23
|
+
"hatchling~=1.27.0",
|
|
23
24
|
]
|
|
24
25
|
|
|
25
26
|
[project.urls]
|
|
@@ -311,6 +311,7 @@ dependencies = [
|
|
|
311
311
|
{ name = "aiostream" },
|
|
312
312
|
{ name = "alive-progress" },
|
|
313
313
|
{ name = "datashare-worker-template" },
|
|
314
|
+
{ name = "hatchling" },
|
|
314
315
|
{ name = "icij-common", extra = ["elasticsearch"] },
|
|
315
316
|
{ name = "nest-asyncio" },
|
|
316
317
|
{ name = "python-json-logger" },
|
|
@@ -339,11 +340,12 @@ requires-dist = [
|
|
|
339
340
|
{ name = "aiostream", specifier = "~=0.6.4" },
|
|
340
341
|
{ name = "alive-progress", specifier = "~=3.2.0" },
|
|
341
342
|
{ name = "datashare-worker-template", editable = "../worker-template" },
|
|
343
|
+
{ name = "hatchling", specifier = "~=1.27.0" },
|
|
342
344
|
{ name = "icij-common", extras = ["elasticsearch"], specifier = "~=0.7.3" },
|
|
343
345
|
{ name = "nest-asyncio", specifier = "~=1.6.0" },
|
|
344
346
|
{ name = "python-json-logger", specifier = "~=4.0.0" },
|
|
345
347
|
{ name = "temporalio", specifier = "~=1.23.0" },
|
|
346
|
-
{ name = "tomlkit", specifier = "
|
|
348
|
+
{ name = "tomlkit", specifier = "~=0.14.0" },
|
|
347
349
|
{ name = "typer", specifier = "~=0.15.4" },
|
|
348
350
|
]
|
|
349
351
|
|
|
@@ -363,7 +365,7 @@ dev = [
|
|
|
363
365
|
|
|
364
366
|
[[package]]
|
|
365
367
|
name = "datashare-worker-template"
|
|
366
|
-
version = "0.1.
|
|
368
|
+
version = "0.1.2"
|
|
367
369
|
source = { editable = "../worker-template" }
|
|
368
370
|
dependencies = [
|
|
369
371
|
{ name = "datashare-python" },
|
|
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
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|