- updates to pyproject.toml to add contributors and update some pytest config

- updates to documentation - clarification cleanup
- defaulting to finserv goals
This commit is contained in:
Joshua Smith
2025-04-24 12:37:16 -04:00
parent 47c4b99f2c
commit 7ef10e2481
9 changed files with 66 additions and 40 deletions

View File

@@ -1,9 +1,13 @@
[tool.poetry]
name = "temporal_AI_agent"
version = "0.1.0"
version = "0.2.0"
description = "Temporal AI Agent"
license = "MIT"
authors = ["Steve Androulakis <steve.androulakis@temporal.io>"]
authors = [
"Steve Androulakis <steve.androulakis@temporal.io>",
"Laine Smith <lainecaseysmith@gmail.com>",
"Joshua Smith <josh.smith@temporal.io>"
]
readme = "README.md"
# By default, Poetry will find packages automatically,
@@ -42,8 +46,8 @@ pandas = "^2.2.3"
gtfs-kit = "^10.1.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3"
pytest-asyncio = "^0.18.3"
pytest = ">=8.2"
pytest-asyncio = "^0.26.0"
black = "^23.7"
isort = "^5.12"
@@ -55,4 +59,5 @@ build-backend = "poetry.core.masonry.api"
asyncio_mode = "auto"
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
asyncio_default_fixture_loop_scope = "function"