-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (84 loc) · 2.23 KB
/
pyproject.toml
File metadata and controls
94 lines (84 loc) · 2.23 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "replicantx"
version = "0.1.19"
description = "End-to-end testing harness for AI agents via web service API"
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
authors = [
{name = "Helix Technologies Limited", email = "team@replicantx.org"}
]
keywords = ["ai", "agent", "testing", "e2e", "api"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Testing",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
]
dependencies = [
"pydantic>=2.11.7",
"typer>=0.16.0",
"httpx>=0.28.1",
"PyYAML>=6.0.2",
"supabase>=2.18.0",
"jinja2>=3.1.6",
"rich>=14.1.0",
"pydantic-ai>=0.6.2",
"python-dotenv>=1.1.1",
"typing-extensions>=4.14.1",
"playwright>=1.48.0",
]
[project.optional-dependencies]
cli = [
"typer[all]>=0.16.0",
]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"black>=24.0.0",
"isort>=5.12.0",
"mypy>=1.8.0",
]
# Note: PydanticAI is included in core dependencies and handles all LLM providers
# Optional providers can be installed separately based on PydanticAI documentation
openai = [
"openai>=1.99.3",
]
anthropic = [
"anthropic>=0.61.0",
]
all = [
"typer[all]>=0.16.0",
"openai>=1.99.3",
"anthropic>=0.61.0",
]
[project.scripts]
replicantx = "replicantx.cli:app"
[project.urls]
Homepage = "https://github.com/helixtechnologies/replicantx"
Documentation = "https://replicantx.org"
Repository = "https://github.com/helixtechnologies/replicantx"
Issues = "https://github.com/helixtechnologies/replicantx/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["replicantx*"]
# Ship prompt templates (browser planner YAML, etc.) inside wheels/sdists.
[tool.setuptools.package-data]
"replicantx" = ["model_pricing.json"]
"replicantx.prompts" = ["*.yaml", "*.yml"]
[tool.black]
line-length = 88
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_configs = true