-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (90 loc) · 2.45 KB
/
Copy pathpyproject.toml
File metadata and controls
101 lines (90 loc) · 2.45 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
95
96
97
98
99
100
101
[project]
name = "pycodeloop"
version = "0.8.2"
authors = [
{ name="Fernando Celmer", email="email@fernandocelmer.com" },
]
license = {file = "LICENSE"}
description = "CodeLoop — a multi-provider agentic coding assistant, terminal or VS Code."
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = [
"rich",
"pydantic",
"typer",
"typing-extensions",
"python-dotenv",
"httpx",
"textual",
"sqlalchemy",
]
keywords = [
"agent",
"llm",
"coding-agent",
"cli",
"anthropic",
"openai",
"ai",
]
classifiers = [
'Development Status :: 3 - Alpha',
"Operating System :: OS Independent",
'Intended Audience :: Developers',
'Natural Language :: English',
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Homepage = "https://github.com/dotflow-io/pycodeloop"
Issues = "https://github.com/dotflow-io/pycodeloop/issues"
Repository = "https://github.com/dotflow-io/pycodeloop"
[project.optional-dependencies]
mcp = ["mcp"]
[tool.poetry]
name = "pycodeloop"
version = "0.8.2"
description = "CodeLoop — a multi-provider agentic coding assistant, terminal or VS Code."
authors = ["Fernando Celmer <email@fernandocelmer.com>"]
readme = "README.md"
license = "MIT"
package-mode = true
homepage = "https://github.com/dotflow-io/pycodeloop"
repository = "https://github.com/dotflow-io/pycodeloop"
packages = [{ include = "pycodeloop" }]
[tool.poetry.scripts]
pycodeloop = "pycodeloop.cli.main:main"
[tool.poetry.dependencies]
python = ">=3.10.0,<4.0"
rich = "^14.1.0"
pydantic = "^2.11.7"
typer = "^0.15.0"
typing-extensions = "^4.14.1"
python-dotenv = "^1.1.0"
httpx = "^0.27.0"
textual = "^8.2"
sqlalchemy = "^2.0.0"
mcp = { version = ">=1.0.0,<3.0.0", optional = true }
[tool.poetry.extras]
mcp = ["mcp"]
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
mcp = ">=1.0.0,<3.0.0"
[tool.poetry.group.code-quality.dependencies]
ruff = "^0.9.0"
mypy = "^1.13.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocs-material = "^9.6.13"
mkdocstrings = {extras = ["python"], version = "^0.29.0"}
[tool.pytest.ini_options]
testpaths = ["tests"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"