dbos 1.15.0a7__tar.gz → 1.15.0a8__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.
- dbos-1.15.0a7/README.md → dbos-1.15.0a8/PKG-INFO +42 -0
- dbos-1.15.0a7/PKG-INFO → dbos-1.15.0a8/README.md +6 -19
- {dbos-1.15.0a7 → dbos-1.15.0a8}/pyproject.toml +20 -1
- {dbos-1.15.0a7 → dbos-1.15.0a8}/LICENSE +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/__init__.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/__main__.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_admin_server.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_app_db.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_classproperty.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_client.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_conductor/conductor.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_conductor/protocol.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_context.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_core.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_croniter.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_dbos.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_dbos_config.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_debouncer.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_debug.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_docker_pg_helper.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_error.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_event_loop.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_fastapi.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_flask.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_kafka.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_kafka_message.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_logger.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_migration.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_outcome.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_queue.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_recovery.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_registrations.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_roles.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_scheduler.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_schemas/__init__.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_schemas/application_database.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_schemas/system_database.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_serialization.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_sys_db.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_sys_db_postgres.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_sys_db_sqlite.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_templates/dbos-db-starter/README.md +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_templates/dbos-db-starter/__package/__init__.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_templates/dbos-db-starter/__package/main.py.dbos +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_templates/dbos-db-starter/__package/schema.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_templates/dbos-db-starter/dbos-config.yaml.dbos +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_templates/dbos-db-starter/migrations/create_table.py.dbos +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_templates/dbos-db-starter/start_postgres_docker.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_tracer.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_utils.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_workflow_commands.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/cli/_github_init.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/cli/_template_init.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/cli/cli.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/cli/migration.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/dbos-config.schema.json +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/py.typed +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/__init__.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/atexit_no_ctor.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/atexit_no_launch.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/classdefs.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/client_collateral.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/client_worker.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/conftest.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/dupname_classdefs1.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/dupname_classdefsa.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/more_classdefs.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/queuedworkflow.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/script_without_fastapi.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_admin_server.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_async.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_async_workflow_management.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_classdecorators.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_cli.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_client.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_concurrency.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_config.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_croniter.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_dbos.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_debouncer.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_debug.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_docker_secrets.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_failures.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_fastapi.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_fastapi_roles.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_flask.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_kafka.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_outcome.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_package.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_queue.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_scheduler.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_schema_migration.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_singleton.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_spans.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_sqlalchemy.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_streaming.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_workflow_introspection.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/tests/test_workflow_management.py +0 -0
- {dbos-1.15.0a7 → dbos-1.15.0a8}/version/__init__.py +0 -0
@@ -1,6 +1,48 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: dbos
|
3
|
+
Version: 1.15.0a8
|
4
|
+
Summary: Ultra-lightweight durable execution in Python
|
5
|
+
Author-Email: "DBOS, Inc." <contact@dbos.dev>
|
6
|
+
License: MIT
|
7
|
+
Classifier: Development Status :: 5 - Production/Stable
|
8
|
+
Classifier: Programming Language :: Python
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
10
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
11
|
+
Classifier: Programming Language :: Python :: 3.10
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
15
|
+
Classifier: Intended Audience :: Developers
|
16
|
+
Classifier: Intended Audience :: Information Technology
|
17
|
+
Classifier: License :: OSI Approved :: MIT License
|
18
|
+
Classifier: Operating System :: OS Independent
|
19
|
+
Classifier: Topic :: Internet
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
21
|
+
Classifier: Topic :: Database
|
22
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
23
|
+
Classifier: Framework :: AsyncIO
|
24
|
+
Requires-Python: >=3.10
|
25
|
+
Requires-Dist: pyyaml>=6.0.2
|
26
|
+
Requires-Dist: python-dateutil>=2.9.0.post0
|
27
|
+
Requires-Dist: psycopg[binary]>=3.1
|
28
|
+
Requires-Dist: websockets>=14.0
|
29
|
+
Requires-Dist: typer-slim>=0.17.4
|
30
|
+
Requires-Dist: sqlalchemy>=2.0.43
|
31
|
+
Provides-Extra: otel
|
32
|
+
Requires-Dist: opentelemetry-api>=1.37.0; extra == "otel"
|
33
|
+
Requires-Dist: opentelemetry-sdk>=1.37.0; extra == "otel"
|
34
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-http>=1.37.0; extra == "otel"
|
35
|
+
Description-Content-Type: text/markdown
|
36
|
+
|
1
37
|
|
2
38
|
<div align="center">
|
3
39
|
|
40
|
+
[](https://github.com/dbos-inc/dbos-transact-py/actions/workflows/unit-test.yml)
|
41
|
+
[](https://pypi.python.org/pypi/dbos)
|
42
|
+
[](https://pypi.python.org/pypi/dbos)
|
43
|
+
[](LICENSE)
|
44
|
+
[](https://discord.com/invite/jsmC6pXGgX)
|
45
|
+
|
4
46
|
# DBOS Transact: Lightweight Durable Workflows
|
5
47
|
|
6
48
|
#### [Documentation](https://docs.dbos.dev/) • [Examples](https://docs.dbos.dev/examples) • [Github](https://github.com/dbos-inc) • [Discord](https://discord.com/invite/jsmC6pXGgX)
|
@@ -1,25 +1,12 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: dbos
|
3
|
-
Version: 1.15.0a7
|
4
|
-
Summary: Ultra-lightweight durable execution in Python
|
5
|
-
Author-Email: "DBOS, Inc." <contact@dbos.dev>
|
6
|
-
License: MIT
|
7
|
-
Requires-Python: >=3.10
|
8
|
-
Requires-Dist: pyyaml>=6.0.2
|
9
|
-
Requires-Dist: python-dateutil>=2.9.0.post0
|
10
|
-
Requires-Dist: psycopg[binary]>=3.1
|
11
|
-
Requires-Dist: websockets>=14.0
|
12
|
-
Requires-Dist: typer-slim>=0.17.4
|
13
|
-
Requires-Dist: sqlalchemy>=2.0.43
|
14
|
-
Provides-Extra: otel
|
15
|
-
Requires-Dist: opentelemetry-api>=1.37.0; extra == "otel"
|
16
|
-
Requires-Dist: opentelemetry-sdk>=1.37.0; extra == "otel"
|
17
|
-
Requires-Dist: opentelemetry-exporter-otlp-proto-http>=1.37.0; extra == "otel"
|
18
|
-
Description-Content-Type: text/markdown
|
19
|
-
|
20
1
|
|
21
2
|
<div align="center">
|
22
3
|
|
4
|
+
[](https://github.com/dbos-inc/dbos-transact-py/actions/workflows/unit-test.yml)
|
5
|
+
[](https://pypi.python.org/pypi/dbos)
|
6
|
+
[](https://pypi.python.org/pypi/dbos)
|
7
|
+
[](LICENSE)
|
8
|
+
[](https://discord.com/invite/jsmC6pXGgX)
|
9
|
+
|
23
10
|
# DBOS Transact: Lightweight Durable Workflows
|
24
11
|
|
25
12
|
#### [Documentation](https://docs.dbos.dev/) • [Examples](https://docs.dbos.dev/examples) • [Github](https://github.com/dbos-inc) • [Discord](https://discord.com/invite/jsmC6pXGgX)
|
@@ -15,7 +15,26 @@ dependencies = [
|
|
15
15
|
]
|
16
16
|
requires-python = ">=3.10"
|
17
17
|
readme = "README.md"
|
18
|
-
|
18
|
+
classifiers = [
|
19
|
+
"Development Status :: 5 - Production/Stable",
|
20
|
+
"Programming Language :: Python",
|
21
|
+
"Programming Language :: Python :: 3",
|
22
|
+
"Programming Language :: Python :: 3 :: Only",
|
23
|
+
"Programming Language :: Python :: 3.10",
|
24
|
+
"Programming Language :: Python :: 3.11",
|
25
|
+
"Programming Language :: Python :: 3.12",
|
26
|
+
"Programming Language :: Python :: 3.13",
|
27
|
+
"Intended Audience :: Developers",
|
28
|
+
"Intended Audience :: Information Technology",
|
29
|
+
"License :: OSI Approved :: MIT License",
|
30
|
+
"Operating System :: OS Independent",
|
31
|
+
"Topic :: Internet",
|
32
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
33
|
+
"Topic :: Database",
|
34
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
35
|
+
"Framework :: AsyncIO",
|
36
|
+
]
|
37
|
+
version = "1.15.0a8"
|
19
38
|
|
20
39
|
[project.license]
|
21
40
|
text = "MIT"
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{dbos-1.15.0a7 → dbos-1.15.0a8}/dbos/_templates/dbos-db-starter/migrations/create_table.py.dbos
RENAMED
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
|
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
|