-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (83 loc) · 2.39 KB
/
Copy pathpyproject.toml
File metadata and controls
90 lines (83 loc) · 2.39 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
[project]
name = "oscar-agent"
version = "0.6.2"
description = "OSCAR - GitHub-Specialized AI Coding Assistant (multi-provider: Gemini, OpenAI GPT-5.5/5.4, Claude 4.8/4.6, Groq, Ollama)"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "OSCAR Team" }]
keywords = [
"ai",
"agent",
"github",
"code-review",
"git",
"vscode",
"llm",
"agentic",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: System :: Systems Administration",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Environment :: Console",
]
dependencies = [
"groq>=0.4.1",
"google-genai>=1.0.0",
"openai>=2.30.0", # GPT-5.5 (April 2026) recognised in ChatModel literal
"anthropic>=0.45.0", # claude-opus-4-7 / sonnet-4-6 / haiku-4-5-20251001
"ollama>=0.4.0", # optional fallback SDK; we use OpenAI-compat for tool calls
"pyyaml>=6.0",
"python-dotenv>=1.0.0",
"pydantic>=2.0.0",
"click>=8.1.0",
"rich>=13.0.0",
"colorama>=0.4.6",
"tavily-python>=0.5.0",
"playwright>=1.40.0",
"requests>=2.31.0",
"beautifulsoup4>=4.12.0",
"asterix-agent==0.2.1",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"httpx>=0.25.0",
"black>=23.0.0",
"isort>=5.12.0",
"ruff>=0.1.0",
]
[project.scripts]
oscar = "oscar.cli.main:main"
oscar-server = "oscar.api.server:start_server"
[project.urls]
Homepage = "https://github.com/adityasarade/OSCAR"
Repository = "https://github.com/adityasarade/OSCAR"
Issues = "https://github.com/adityasarade/OSCAR"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/oscar"]
[tool.hatch.build.targets.sdist]
include = [
"src/oscar",
"README.md",
"pyproject.toml",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"