-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (76 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
83 lines (76 loc) · 1.88 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
[project]
name = "swival"
version = "1.0.30"
description = "A small, powerful CLI coding agent for open AI models"
readme = "README.md"
license = "MIT"
requires-python = ">=3.13"
authors = [
{ name = "Frank Denis", email = "github@pureftpd.org" },
]
keywords = ["ai", "agent", "cli", "llm", "coding", "tool-calling"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
dependencies = [
"litellm>=1.88.0",
"tiktoken>=0.13.0",
"html-to-markdown>=3.5.7,<4",
"rich>=15.0.0",
"prompt-toolkit>=3.0.52",
"mcp>=1.27.2,<2",
"rank-bm25>=0.2.2",
"httpx>=0.28.1",
"starlette>=1.2.1",
"uvicorn>=0.49.0",
"fast-cipher>=0.2.2",
"boto3>=1.43.25",
"starlark-go>=1.0.1",
"google-cloud-aiplatform>=1.156.0",
]
[project.urls]
Homepage = "https://swival.dev/"
Repository = "https://github.com/swival/swival"
Issues = "https://github.com/swival/swival/issues"
[project.scripts]
swival = "swival.agent:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = [
"swival/",
"tests/",
"pyproject.toml",
"README.md",
"LICENSE",
"ChangeLog.md",
]
exclude = [
"homebrew-tap/",
]
[tool.hatch.build.targets.wheel]
packages = ["swival"]
[tool.uv]
package = true
constraint-dependencies = ["requests>=2.34.2", "cryptography>=48.0.0"]
override-dependencies = ["aiohttp>=3.14.1", "python-dotenv>=1.2.2"]
[dependency-groups]
dev = [
"pytest>=9.0.3",
"ruff>=0.15.16",
"httpx2>=2.3.0",
]
website = [
"markdown",
"pillow",
]