- Included 'requests' in the dependencies list of uv.lock. - Specified minimum version of 'requests' as 2.32.0 in requires-dist.
19 lines
385 B
TOML
19 lines
385 B
TOML
[project]
|
|
name = "motia-iii-example-python"
|
|
version = "0.0.1"
|
|
description = "Motia iii Example - Python Implementation"
|
|
authors = [{ name = "III" }]
|
|
requires-python = ">=3.10"
|
|
|
|
dependencies = [
|
|
"motia[otel]==1.0.0rc24",
|
|
"iii-sdk==0.2.0",
|
|
"pydantic>=2.0",
|
|
"aiohttp>=3.10.0",
|
|
"redis>=5.2.0",
|
|
"python-dotenv>=1.0.0",
|
|
"pytz>=2025.2",
|
|
"requests>=2.32.0",
|
|
]
|
|
|