-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
107 lines (92 loc) · 2.83 KB
/
Copy pathpyproject.toml
File metadata and controls
107 lines (92 loc) · 2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[build-system]
requires = ["setuptools>=69.0.0", "wheel>=0.42.0"]
build-backend = "setuptools.build_meta"
[project]
name = "travel_planner"
version = "0.1.0"
description = "Multi-agent travel planning system powered by OpenAI Agents SDK and LangGraph"
readme = "README.md"
requires-python = ">=3.12"
license = {file = "LICENSE"}
authors = [
{name = "Bjorn Melin", email = "bjorn@example.com"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
dependencies = [
# Core frameworks
"openai-agents>=0.0.14", # OpenAI Agents SDK (latest version as of May 2025)
"agents-sdk-models>=0.0.11", # Model adapters for OpenAI Agents SDK
"langchain>=0.1.0", # LangChain Core
"langgraph>=0.4.0", # LangGraph for agent orchestration
"stagehand-py>=0.3.6", # Browser automation (latest version as of May 2025)
"supabase>=2.1.0", # Supabase integration
# Browser automation
"playwright>=1.42.0", # Required by Stagehand
# Utility libraries
"pydantic>=2.6.0", # Data validation
"python-dotenv>=1.0.0", # Environment variables
"typing-extensions>=4.9.0", # Additional type hints
"loguru>=0.7.2", # Logging
"tenacity>=8.2.3", # Retry functionality
"httpx>=0.26.0", # HTTP client
# Data handling
"python-dateutil>=2.8.2", # Date utilities
"pycountry>=23.12.11", # Country data
# Research tools
"tavily-python>=0.2.8", # Tavily API integration
"firecrawl>=0.1.0", # FireCrawl API integration
]
[project.optional-dependencies]
dev = [
# Testing
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
"pytest-mock>=3.12.0",
"pytest-xdist>=3.5.0",
"freezegun>=1.4.0", # Time freezing for tests
"respx>=0.20.2", # Mocking HTTP requests
# Code quality
"black>=24.1.0", # Code formatting
"isort>=5.13.0", # Import sorting
"ruff>=0.2.0", # Linting
"mypy>=1.8.0", # Type checking
"types-python-dateutil>=2.8.19.14",
"types-requests>=2.31.0.2",
# Documentation
"sphinx>=7.2.6",
"sphinx-rtd-theme>=1.3.0",
# Pre-commit hooks
"pre-commit>=3.6.0",
]
[tool.black]
line-length = 88
target-version = ["py312"]
include = '\.pyi?$'
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
[tool.ruff]
line-length = 88
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "B", "I", "N", "UP", "PL", "RUF"]
ignore = []
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
asyncio_mode = "auto"