-
Notifications
You must be signed in to change notification settings - Fork 269
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 1.59 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
[project]
name = "stripe-agent-toolkit"
version = "0.7.0"
description = "Stripe Agent Toolkit"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Stripe", email = "[email protected]"}
]
keywords = ["stripe", "api", "payments", "mcp", "agents"]
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.0.0",
"mcp>=1.0.0",
]
[project.optional-dependencies]
openai = ["openai>=1.0.0", "agents>=0.0.84"]
langchain = ["langchain>=0.1.0"]
crewai = ["crewai>=0.1.0"]
strands = ["strands>=0.1.0"]
all = [
"stripe-agent-toolkit[openai]",
"stripe-agent-toolkit[langchain]",
"stripe-agent-toolkit[crewai]",
"stripe-agent-toolkit[strands]",
]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"ruff>=0.1.0",
"pyright>=1.1.0",
]
[project.urls]
"Bug Tracker" = "https://github.com/stripe/ai/issues"
"Source Code" = "https://github.com/stripe/ai"
"Documentation" = "https://docs.stripe.com/mcp"
[tool.setuptools.packages.find]
include = ["stripe_agent_toolkit*"]
exclude = ["tests*", "examples*"]
[tool.ruff]
# same as our black config
line-length = 79
extend-exclude = ["build"]
[tool.ruff.format]
# currently the default value, but opt-out in the future
docstring-code-format = false
[tool.pyright]
include = [
"*",
]
exclude = ["build", "**/__pycache__"]
reportMissingTypeArgument = true
reportUnnecessaryCast = true
reportUnnecessaryComparison = true
reportUnnecessaryContains = true
reportUnnecessaryIsInstance = true
reportPrivateImportUsage = true
reportUnnecessaryTypeIgnoreComment = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]