-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (63 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
73 lines (63 loc) · 1.54 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
[project]
name = "vibepod"
version = "0.11.0"
description = "One CLI for containerized AI coding agents"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "VibePod" }]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"typer>=0.12.0",
"rich>=13.0.0",
"docker>=7.0.0",
"pyyaml>=6.0.0",
"platformdirs>=4.0.0",
]
[project.urls]
Homepage = "https://vibepod.dev/"
Source = "https://github.com/VibePod/vibepod-cli"
Organization = "https://github.com/VibePod"
Author = "https://github.com/nezhar"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"ruff>=0.6.0",
"mypy>=1.11.0",
"types-docker",
"types-PyYAML",
]
docs = [
"mkdocs>=1.6.0,<2.0",
"mkdocs-material>=9.0.0",
"mkdocs-typer>=0.0.3",
]
[project.scripts]
vp = "vibepod.cli:app"
vibepod = "vibepod.cli:app"
[build-system]
requires = ["hatchling>=1.24.0"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = ["venv", "venv/**"]
[tool.hatch.build.targets.wheel]
packages = ["src/vibepod"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP", "B"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_ignores = true