2024-03-01 10:09:30 -08:00
|
|
|
[tool.poetry]
|
|
|
|
|
name = "skyvern"
|
2025-05-18 22:36:24 -07:00
|
|
|
version = "0.1.84"
|
2024-03-01 10:09:30 -08:00
|
|
|
description = ""
|
|
|
|
|
authors = ["Skyvern AI <info@skyvern.com>"]
|
|
|
|
|
readme = "README.md"
|
2025-02-07 02:48:13 +08:00
|
|
|
packages = [{ include = "skyvern" }, { include = "alembic" }]
|
2024-03-01 10:09:30 -08:00
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2025-05-19 23:46:48 -04:00
|
|
|
python = ">=3.11,<3.14"
|
2024-03-01 10:09:30 -08:00
|
|
|
python-dotenv = "^1.0.0"
|
2025-04-16 15:32:51 -07:00
|
|
|
openai = ">=1.68.2"
|
2024-03-24 12:47:47 -07:00
|
|
|
sqlalchemy = {extras = ["mypy"], version = "^2.0.29"}
|
2024-03-01 10:09:30 -08:00
|
|
|
aiohttp = "^3.8.5"
|
|
|
|
|
python-multipart = "^0.0.6"
|
|
|
|
|
toml = "^0.10.2"
|
|
|
|
|
jinja2 = "^3.1.2"
|
|
|
|
|
uvicorn = {extras = ["standard"], version = "^0.24.0.post1"}
|
2025-05-11 19:28:10 -07:00
|
|
|
litellm = ">=1.68.2"
|
2025-05-19 23:46:48 -04:00
|
|
|
playwright = [
|
|
|
|
|
{version = ">=1.52.0", python = ">=3.13,<3.14"}, # Python 3.13 requires 1.52.0+
|
|
|
|
|
{version = ">=1.46.0", python = ">=3.11,<3.13"} # Older Python versions can use 1.46.0+
|
|
|
|
|
]
|
|
|
|
|
greenlet = [
|
|
|
|
|
{version = ">=3.2.2", python = ">=3.13,<3.14"}, # Python 3.13 requires 3.2.2+
|
|
|
|
|
{version = ">=2.0.2", python = ">=3.11,<3.13"} # Older Python versions can use 2.0.2+
|
|
|
|
|
]
|
2024-03-01 10:09:30 -08:00
|
|
|
pillow = "^10.1.0"
|
|
|
|
|
starlette-context = "^0.3.6"
|
|
|
|
|
ddtrace = "^2.3.2"
|
|
|
|
|
pydantic = "^2.5.2"
|
|
|
|
|
pydantic-settings = "^2.1.0"
|
2024-11-11 00:43:35 -08:00
|
|
|
fastapi = "^0.115.4"
|
2025-05-19 23:46:48 -04:00
|
|
|
psycopg = {version = ">=3.2.2,<3.3.0", extras = ["binary", "pool"]}
|
2024-03-01 10:09:30 -08:00
|
|
|
alembic = "^1.12.1"
|
|
|
|
|
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
|
|
|
|
|
cachetools = "^5.3.2"
|
|
|
|
|
aioboto3 = "^12.0.0"
|
|
|
|
|
commentjson = "^0.9.0"
|
|
|
|
|
asyncache = "^0.3.1"
|
|
|
|
|
orjson = "^3.9.10"
|
|
|
|
|
structlog = "^23.2.0"
|
2025-05-19 23:46:48 -04:00
|
|
|
typer = ">=0.9.0,<0.10.0"
|
2024-03-14 08:32:18 -07:00
|
|
|
types-toml = "^0.10.8.7"
|
2025-01-22 12:02:22 +08:00
|
|
|
httpx = {version = "^0.27.0", extras = ["socks"]}
|
2024-03-31 01:58:11 -07:00
|
|
|
filetype = "^1.2.0"
|
2024-04-01 16:28:46 -07:00
|
|
|
redis = "^5.0.3"
|
2025-05-20 10:49:03 -07:00
|
|
|
onnxruntime = [
|
|
|
|
|
{ version = ">=1.20.0,<1.23.0", python = ">=3.12, <3.14"},
|
|
|
|
|
{ version = "<1.17", python = ">=3.11, <3.12"}
|
|
|
|
|
]
|
2024-05-08 20:43:52 -07:00
|
|
|
aioredlock = "^0.7.3"
|
2024-05-26 14:51:53 -07:00
|
|
|
stripe = "^9.7.0"
|
2024-06-12 15:28:45 -07:00
|
|
|
tldextract = "^5.1.2"
|
2024-06-24 14:33:15 -07:00
|
|
|
websockets = "^12.0"
|
2024-06-26 08:51:30 -07:00
|
|
|
email-validator = "^2.2.0"
|
2024-08-16 08:25:10 +03:00
|
|
|
temporalio = "^1.6.0"
|
2024-09-19 11:45:31 +08:00
|
|
|
requests-toolbelt = "^1.0.0"
|
2025-05-20 00:38:36 -07:00
|
|
|
rich = {extras = ["jupyter"], version = "^13.7.0"}
|
2024-11-10 16:24:13 -08:00
|
|
|
posthog = "^3.7.0"
|
|
|
|
|
aiofiles = "^24.1.0"
|
2024-11-12 02:17:22 -08:00
|
|
|
pyotp = "^2.9.0"
|
2024-11-17 14:39:29 -08:00
|
|
|
asyncpg = "^0.30.0"
|
2024-12-30 11:31:29 -08:00
|
|
|
json-repair = "^0.34.0"
|
2025-01-20 12:33:54 -08:00
|
|
|
pypdf = "^5.1.0"
|
2025-04-02 10:33:37 -06:00
|
|
|
fastmcp = "^0.4.1"
|
2025-04-03 00:46:57 -04:00
|
|
|
psutil = ">=7.0.0"
|
2025-04-04 22:33:52 -04:00
|
|
|
tiktoken = ">=0.9.0"
|
2025-04-28 09:49:44 +08:00
|
|
|
anthropic = "^0.50.0"
|
2025-04-29 03:37:34 +08:00
|
|
|
google-cloud-aiplatform = "^1.90.0"
|
2025-05-20 19:43:33 -04:00
|
|
|
alive-progress = "^3.2.0"
|
|
|
|
|
colorama = "^0.4.6"
|
2024-03-01 10:09:30 -08:00
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-05-16 18:20:11 -07:00
|
|
|
isort = "^5.13.2"
|
2024-03-01 10:09:30 -08:00
|
|
|
mypy = "^1.4.1"
|
|
|
|
|
flake8 = "^6.0.0"
|
|
|
|
|
types-requests = "^2.31.0.2"
|
|
|
|
|
pytest = "^7.4.0"
|
|
|
|
|
pytest-asyncio = "^0.21.1"
|
|
|
|
|
watchdog = "^3.0.0"
|
|
|
|
|
mock = "^5.1.0"
|
|
|
|
|
autoflake = "^2.2.0"
|
|
|
|
|
pydevd-pycharm = "^233.6745.319"
|
|
|
|
|
ipython = "^8.17.2"
|
|
|
|
|
typer = "^0.9.0"
|
|
|
|
|
ipykernel = "^6.26.0"
|
|
|
|
|
notebook = "^7.0.6"
|
|
|
|
|
freezegun = "^1.2.2"
|
|
|
|
|
snoop = "^0.4.3"
|
|
|
|
|
rich = {extras = ["jupyter"], version = "^13.7.0"}
|
2024-11-10 16:24:13 -08:00
|
|
|
fpdf = "^1.7.2"
|
|
|
|
|
pypdf = "^5.0.1"
|
2025-02-07 02:48:13 +08:00
|
|
|
twine = "^6.1.0"
|
|
|
|
|
build = "^1.2.2.post1"
|
2025-02-21 02:18:02 +08:00
|
|
|
pandas = "^2.2.3"
|
2025-03-23 16:49:02 -07:00
|
|
|
pre-commit = "^4.2.0"
|
2024-03-01 10:09:30 -08:00
|
|
|
|
|
|
|
|
[build-system]
|
2025-05-19 23:46:48 -04:00
|
|
|
requires = ["poetry-core>=1.0.0"]
|
2024-03-01 10:09:30 -08:00
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
2024-05-16 18:20:11 -07:00
|
|
|
[tool.ruff]
|
|
|
|
|
exclude = [
|
|
|
|
|
".bzr",
|
|
|
|
|
".direnv",
|
|
|
|
|
".eggs",
|
|
|
|
|
".git",
|
|
|
|
|
".git-rewrite",
|
|
|
|
|
".hg",
|
|
|
|
|
".ipynb_checkpoints",
|
|
|
|
|
".mypy_cache",
|
|
|
|
|
".nox",
|
|
|
|
|
".pants.d",
|
|
|
|
|
".pyenv",
|
|
|
|
|
".pytest_cache",
|
|
|
|
|
".pytype",
|
|
|
|
|
".ruff_cache",
|
|
|
|
|
".svn",
|
|
|
|
|
".tox",
|
|
|
|
|
".venv",
|
|
|
|
|
".vscode",
|
|
|
|
|
"__pypackages__",
|
|
|
|
|
"_build",
|
|
|
|
|
"buck-out",
|
|
|
|
|
"build",
|
|
|
|
|
"dist",
|
|
|
|
|
"node_modules",
|
|
|
|
|
"site-packages",
|
|
|
|
|
"venv",
|
|
|
|
|
"alembic/env.py",
|
|
|
|
|
]
|
2024-03-01 10:09:30 -08:00
|
|
|
line-length = 120
|
2024-05-16 18:20:11 -07:00
|
|
|
target-version = "py311"
|
2024-03-01 10:09:30 -08:00
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
|
profile = "black"
|
|
|
|
|
multi_line_output = 3
|
|
|
|
|
include_trailing_comma = true
|
|
|
|
|
force_grid_wrap = 0
|
|
|
|
|
use_parentheses = true
|
|
|
|
|
ensure_newline_before_comments = true
|
|
|
|
|
line_length = 120
|
2024-05-27 09:33:32 -07:00
|
|
|
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
|
2024-03-01 10:09:30 -08:00
|
|
|
skip_glob = [".tox", "__pycache__", "*.pyc", "venv*/*", "reports", "venv", "env", "node_modules", ".env", ".venv", "dist"]
|
|
|
|
|
skip = ["webeye/actions/__init__.py", "forge/sdk/__init__.py"]
|
2024-03-24 12:47:47 -07:00
|
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
|
plugins = "sqlalchemy.ext.mypy.plugin"
|
2025-02-07 02:48:13 +08:00
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2025-04-03 00:46:57 -04:00
|
|
|
skyvern = "skyvern.cli.commands:cli_app"
|
2025-03-17 06:54:32 +00:00
|
|
|
|
|
|
|
|
[tool.codeflash]
|
|
|
|
|
# All paths are relative to this pyproject.toml's directory.
|
|
|
|
|
module-root = "skyvern"
|
2025-03-20 14:24:20 -07:00
|
|
|
tests-root = "codeflash-tests"
|
2025-03-17 06:54:32 +00:00
|
|
|
test-framework = "pytest"
|
|
|
|
|
ignore-paths = ["skyvern/client"]
|
2025-05-19 23:46:48 -04:00
|
|
|
formatter-cmds = ["ruff check --exit-zero --fix $file", "ruff format $file"]
|