verploy 0.0.2__tar.gz → 0.0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- verploy-0.0.4/PKG-INFO +62 -0
- verploy-0.0.4/README.md +44 -0
- {verploy-0.0.2 → verploy-0.0.4}/pyproject.toml +2 -2
- verploy-0.0.2/PKG-INFO +0 -49
- verploy-0.0.2/README.md +0 -31
- {verploy-0.0.2 → verploy-0.0.4}/LICENSE +0 -0
- {verploy-0.0.2 → verploy-0.0.4}/src/verploy/__init__.py +0 -0
- {verploy-0.0.2 → verploy-0.0.4}/src/verploy/_constants.py +0 -0
- {verploy-0.0.2 → verploy-0.0.4}/src/verploy/bump_package_version_patch.py +0 -0
- {verploy-0.0.2 → verploy-0.0.4}/src/verploy/make_file_executble.py +0 -0
- {verploy-0.0.2 → verploy-0.0.4}/src/verploy/package_version.py +0 -0
- {verploy-0.0.2 → verploy-0.0.4}/src/verploy/publish_to_pypi.py +0 -0
- {verploy-0.0.2 → verploy-0.0.4}/src/verploy/py.typed +0 -0
- {verploy-0.0.2 → verploy-0.0.4}/src/verploy/verploy.py +0 -0
verploy-0.0.4/PKG-INFO
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: verploy
|
|
3
|
+
Version: 0.0.4
|
|
4
|
+
Summary: A local-first CI/CD tool for agentic engineering.
|
|
5
|
+
Author: Peter Lavigne
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
9
|
+
Requires-Dist: pl-run-program>=0.0.30
|
|
10
|
+
Requires-Dist: pl-user-io>=0.0.18
|
|
11
|
+
Requires-Dist: typer==0.21.1
|
|
12
|
+
Requires-Dist: pl-mocks-and-fakes>=0.0.30
|
|
13
|
+
Requires-Dist: pl-tiny-clients>=0.0.42
|
|
14
|
+
Requires-Python: >=3.12
|
|
15
|
+
Project-URL: Homepage, https://github.com/Peter-Lavigne/verploy
|
|
16
|
+
Project-URL: Repository, https://github.com/Peter-Lavigne/verploy
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# verploy
|
|
20
|
+
|
|
21
|
+
A local-first CI/CD tool for agentic engineering.
|
|
22
|
+
|
|
23
|
+
`verploy verify` rebases worktrees and runs automated verifications. Coding agents run this from worktrees and docker containers.
|
|
24
|
+
|
|
25
|
+
`verploy deploy` builds on `verploy verify`, adding manual verification, fast-forward merging, and automated deployment. Users run this.
|
|
26
|
+
|
|
27
|
+
Rationale:
|
|
28
|
+
- Local-first workflows significantly reduce per-prompt latency compared to using remote agents and GitHub's CI/CD
|
|
29
|
+
- Manual verification should be programmatically defined on a per-project basis
|
|
30
|
+
- Worktree support enables agents to work independently
|
|
31
|
+
- Rebase conflict handling discourages agents from modifying git
|
|
32
|
+
- Docker containers are necessary to sandbox autonomous agents
|
|
33
|
+
- Agents should not have access to on-device deployment credentials
|
|
34
|
+
|
|
35
|
+
## Installation
|
|
36
|
+
|
|
37
|
+
Verploy is available as [`verploy`](https://pypi.org/project/verploy/) on PyPI.
|
|
38
|
+
|
|
39
|
+
Because verploy uses other tools you have installed, it's recommended to install it per-project instead of globally:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
uv add --dev verploy
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Setup
|
|
46
|
+
|
|
47
|
+
Add a `.verploy/` directory to your project with any of these executable scripts:
|
|
48
|
+
|
|
49
|
+
- `verify` -- runs verification checks (e.g. linting, type checking, tests)
|
|
50
|
+
- `manual` -- runs manual checks (e.g. human review, expensive tests)
|
|
51
|
+
- `deploy` -- runs after pushing (e.g. publishing to PyPI)
|
|
52
|
+
|
|
53
|
+
## Usage
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
uv run verploy verify
|
|
57
|
+
uv run verploy deploy
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
## License
|
|
61
|
+
|
|
62
|
+
Licensed under the Apache License 2.0. See [LICENSE](./LICENSE).
|
verploy-0.0.4/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# verploy
|
|
2
|
+
|
|
3
|
+
A local-first CI/CD tool for agentic engineering.
|
|
4
|
+
|
|
5
|
+
`verploy verify` rebases worktrees and runs automated verifications. Coding agents run this from worktrees and docker containers.
|
|
6
|
+
|
|
7
|
+
`verploy deploy` builds on `verploy verify`, adding manual verification, fast-forward merging, and automated deployment. Users run this.
|
|
8
|
+
|
|
9
|
+
Rationale:
|
|
10
|
+
- Local-first workflows significantly reduce per-prompt latency compared to using remote agents and GitHub's CI/CD
|
|
11
|
+
- Manual verification should be programmatically defined on a per-project basis
|
|
12
|
+
- Worktree support enables agents to work independently
|
|
13
|
+
- Rebase conflict handling discourages agents from modifying git
|
|
14
|
+
- Docker containers are necessary to sandbox autonomous agents
|
|
15
|
+
- Agents should not have access to on-device deployment credentials
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
|
|
19
|
+
Verploy is available as [`verploy`](https://pypi.org/project/verploy/) on PyPI.
|
|
20
|
+
|
|
21
|
+
Because verploy uses other tools you have installed, it's recommended to install it per-project instead of globally:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
uv add --dev verploy
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Setup
|
|
28
|
+
|
|
29
|
+
Add a `.verploy/` directory to your project with any of these executable scripts:
|
|
30
|
+
|
|
31
|
+
- `verify` -- runs verification checks (e.g. linting, type checking, tests)
|
|
32
|
+
- `manual` -- runs manual checks (e.g. human review, expensive tests)
|
|
33
|
+
- `deploy` -- runs after pushing (e.g. publishing to PyPI)
|
|
34
|
+
|
|
35
|
+
## Usage
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
uv run verploy verify
|
|
39
|
+
uv run verploy deploy
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## License
|
|
43
|
+
|
|
44
|
+
Licensed under the Apache License 2.0. See [LICENSE](./LICENSE).
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "verploy"
|
|
3
|
-
version = "0.0.
|
|
4
|
-
description = "
|
|
3
|
+
version = "0.0.4"
|
|
4
|
+
description = "A local-first CI/CD tool for agentic engineering."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [{ name = "Peter Lavigne" }]
|
|
7
7
|
requires-python = ">=3.12"
|
verploy-0.0.2/PKG-INFO
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: verploy
|
|
3
|
-
Version: 0.0.2
|
|
4
|
-
Summary: Continuous integration and continuous deployment of python projects.
|
|
5
|
-
Author: Peter Lavigne
|
|
6
|
-
License-Expression: Apache-2.0
|
|
7
|
-
License-File: LICENSE
|
|
8
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
9
|
-
Requires-Dist: pl-run-program>=0.0.30
|
|
10
|
-
Requires-Dist: pl-user-io>=0.0.18
|
|
11
|
-
Requires-Dist: typer==0.21.1
|
|
12
|
-
Requires-Dist: pl-mocks-and-fakes>=0.0.30
|
|
13
|
-
Requires-Dist: pl-tiny-clients>=0.0.42
|
|
14
|
-
Requires-Python: >=3.12
|
|
15
|
-
Project-URL: Homepage, https://github.com/Peter-Lavigne/verploy
|
|
16
|
-
Project-URL: Repository, https://github.com/Peter-Lavigne/verploy
|
|
17
|
-
Description-Content-Type: text/markdown
|
|
18
|
-
|
|
19
|
-
# verploy
|
|
20
|
-
|
|
21
|
-
Continuous integration and continuous deployment of python projects.
|
|
22
|
-
|
|
23
|
-
## Installation
|
|
24
|
-
|
|
25
|
-
Install ruff, pyright, pytest, and pytest-cov in your uv project.
|
|
26
|
-
|
|
27
|
-
(Optional) Install verploy as a CLI tool:
|
|
28
|
-
|
|
29
|
-
```bash
|
|
30
|
-
uv tool install verploy
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
## Usage
|
|
34
|
-
|
|
35
|
-
Run with uvx:
|
|
36
|
-
|
|
37
|
-
```bash
|
|
38
|
-
uvx --from verploy check
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
Run as a CLI tool:
|
|
42
|
-
|
|
43
|
-
```bash
|
|
44
|
-
check
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
## License
|
|
48
|
-
|
|
49
|
-
Licensed under the Apache License 2.0. See [LICENSE](./LICENSE).
|
verploy-0.0.2/README.md
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
# verploy
|
|
2
|
-
|
|
3
|
-
Continuous integration and continuous deployment of python projects.
|
|
4
|
-
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
Install ruff, pyright, pytest, and pytest-cov in your uv project.
|
|
8
|
-
|
|
9
|
-
(Optional) Install verploy as a CLI tool:
|
|
10
|
-
|
|
11
|
-
```bash
|
|
12
|
-
uv tool install verploy
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
## Usage
|
|
16
|
-
|
|
17
|
-
Run with uvx:
|
|
18
|
-
|
|
19
|
-
```bash
|
|
20
|
-
uvx --from verploy check
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
Run as a CLI tool:
|
|
24
|
-
|
|
25
|
-
```bash
|
|
26
|
-
check
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
## License
|
|
30
|
-
|
|
31
|
-
Licensed under the Apache License 2.0. See [LICENSE](./LICENSE).
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|