aevum-cli 0.4.0__tar.gz → 0.5.0__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.
@@ -1,49 +1,52 @@
1
- # Python
2
- __pycache__/
3
- *.pyc
4
- *.pyo
5
- *.pyd
6
- .venv/
7
- *.egg-info/
8
-
9
- # Build
10
- dist/
11
- build/
12
- site/
13
-
14
- # Tools
15
- .mypy_cache/
16
- .ruff_cache/
17
- .pytest_cache/
18
- .hypothesis/
19
- .cache/
20
-
21
- # IDE
22
- .vscode/
23
- .idea/
24
- *.swp
25
- *.swo
26
-
27
- # OS
28
- .DS_Store
29
- Thumbs.db
30
-
31
- # Verify scripts (run locally, never commit)
32
- verify_*.py
33
- scripts/verify_*.py
34
-
35
- # Aevum development — never commit (Phase 0+)
36
- aevum_principles.key
37
- signed_principles_draft.yaml
38
- tools/sign_principles.py
39
-
40
- # Private keys — never commit
41
- *.key
42
- *.pem
43
-
44
- # OpenSSF Scorecard output (Phase 0+)
45
- results.sarif
46
- verify_phase3.py
47
- verify_phase7.py
48
- verify_phase8.py
49
- verify_phase*.py
1
+ # Python
2
+ __pycache__/
3
+ *.pyc
4
+ *.pyo
5
+ *.pyd
6
+ .venv/
7
+ *.egg-info/
8
+
9
+ # Build
10
+ dist/
11
+ build/
12
+ site/
13
+
14
+ # Tools
15
+ .mypy_cache/
16
+ .ruff_cache/
17
+ .pytest_cache/
18
+ .hypothesis/
19
+ .cache/
20
+
21
+ # IDE
22
+ .vscode/
23
+ .idea/
24
+ *.swp
25
+ *.swo
26
+
27
+ # OS
28
+ .DS_Store
29
+ Thumbs.db
30
+
31
+ # Verify scripts (run locally, never commit)
32
+ verify_*.py
33
+ scripts/verify_*.py
34
+
35
+ # Aevum development — never commit (Phase 0+)
36
+ aevum_principles.key
37
+ signed_principles_draft.yaml
38
+ tools/sign_principles.py
39
+
40
+ # Private keys — never commit
41
+ *.key
42
+ *.pem
43
+
44
+ # OpenSSF Scorecard output (Phase 0+)
45
+ results.sarif
46
+ verify_phase3.py
47
+ verify_phase7.py
48
+ verify_phase8.py
49
+ verify_phase*.py
50
+
51
+ # Maintenance generated files — local only, never commit
52
+ maintenance/generated/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aevum-cli
3
- Version: 0.4.0
3
+ Version: 0.5.0
4
4
  Summary: Aevum -- command-line interface for operating Aevum nodes.
5
5
  Project-URL: Homepage, https://aevum.build
6
6
  Project-URL: Repository, https://github.com/aevum-labs/aevum
@@ -1,12 +1,12 @@
1
- # aevum-cli
2
-
3
- Command-line interface for Aevum — start the server, manage store migrations, and inspect complication state.
4
-
5
- ```bash
6
- pip install aevum-cli
7
- aevum server start --graph memory
8
- aevum store migrate postgres:<dsn>
9
- aevum version
10
- ```
11
-
12
- See the [main repository README](https://github.com/aevum-labs/aevum) for full usage.
1
+ # aevum-cli
2
+
3
+ Command-line interface for Aevum — start the server, manage store migrations, and inspect complication state.
4
+
5
+ ```bash
6
+ pip install aevum-cli
7
+ aevum server start --graph memory
8
+ aevum store migrate postgres:<dsn>
9
+ aevum version
10
+ ```
11
+
12
+ See the [main repository README](https://github.com/aevum-labs/aevum) for full usage.
@@ -1,70 +1,70 @@
1
- [project]
2
- name = "aevum-cli"
3
- version = "0.4.0"
4
- description = "Aevum -- command-line interface for operating Aevum nodes."
5
- readme = "README.md"
6
- requires-python = ">=3.11"
7
- license = { text = "Apache-2.0" }
8
- classifiers = [
9
- "Development Status :: 3 - Alpha",
10
- "Intended Audience :: Developers",
11
- "License :: OSI Approved :: Apache Software License",
12
- "Programming Language :: Python :: 3.11",
13
- "Typing :: Typed",
14
- ]
15
- dependencies = [
16
- "aevum-core",
17
- "aevum-server",
18
- "typer[all]>=0.12",
19
- "uvicorn[standard]>=0.30",
20
- ]
21
-
22
- [project.scripts]
23
- aevum = "aevum.cli.__main__:app"
24
-
25
- [project.urls]
26
- Homepage = "https://aevum.build"
27
- Repository = "https://github.com/aevum-labs/aevum"
28
-
29
- [build-system]
30
- requires = ["hatchling"]
31
- build-backend = "hatchling.build"
32
-
33
- [tool.hatch.build.targets.wheel]
34
- packages = ["src/aevum"]
35
-
36
- [tool.uv.sources]
37
- aevum-core = { workspace = true }
38
- aevum-server = { workspace = true }
39
- aevum-conformance = { workspace = true }
40
-
41
- [tool.pytest.ini_options]
42
- testpaths = ["tests"]
43
- asyncio_mode = "auto"
44
- addopts = "--tb=short"
45
- pythonpath = ["src", "tests"]
46
-
47
- [tool.mypy]
48
- strict = true
49
- python_version = "3.11"
50
- mypy_path = "src"
51
- explicit_package_bases = true
52
- ignore_missing_imports = true
53
-
54
- [tool.ruff]
55
- line-length = 130
56
-
57
- [tool.ruff.lint]
58
- select = ["E", "F", "UP", "B", "SIM", "I", "ANN"]
59
- ignore = ["ANN401"]
60
-
61
- [project.optional-dependencies]
62
- conform = [
63
- "aevum-conformance",
64
- ]
65
- dev = [
66
- "pytest>=8.0",
67
- "pytest-asyncio>=0.23",
68
- "mypy>=1.10",
69
- "ruff>=0.9",
70
- ]
1
+ [project]
2
+ name = "aevum-cli"
3
+ version = "0.5.0"
4
+ description = "Aevum -- command-line interface for operating Aevum nodes."
5
+ readme = "README.md"
6
+ requires-python = ">=3.11"
7
+ license = { text = "Apache-2.0" }
8
+ classifiers = [
9
+ "Development Status :: 3 - Alpha",
10
+ "Intended Audience :: Developers",
11
+ "License :: OSI Approved :: Apache Software License",
12
+ "Programming Language :: Python :: 3.11",
13
+ "Typing :: Typed",
14
+ ]
15
+ dependencies = [
16
+ "aevum-core",
17
+ "aevum-server",
18
+ "typer[all]>=0.12",
19
+ "uvicorn[standard]>=0.30",
20
+ ]
21
+
22
+ [project.scripts]
23
+ aevum = "aevum.cli.__main__:app"
24
+
25
+ [project.urls]
26
+ Homepage = "https://aevum.build"
27
+ Repository = "https://github.com/aevum-labs/aevum"
28
+
29
+ [build-system]
30
+ requires = ["hatchling"]
31
+ build-backend = "hatchling.build"
32
+
33
+ [tool.hatch.build.targets.wheel]
34
+ packages = ["src/aevum"]
35
+
36
+ [tool.uv.sources]
37
+ aevum-core = { workspace = true }
38
+ aevum-server = { workspace = true }
39
+ aevum-conformance = { workspace = true }
40
+
41
+ [tool.pytest.ini_options]
42
+ testpaths = ["tests"]
43
+ asyncio_mode = "auto"
44
+ addopts = "--tb=short"
45
+ pythonpath = ["src", "tests"]
46
+
47
+ [tool.mypy]
48
+ strict = true
49
+ python_version = "3.11"
50
+ mypy_path = "src"
51
+ explicit_package_bases = true
52
+ ignore_missing_imports = true
53
+
54
+ [tool.ruff]
55
+ line-length = 130
56
+
57
+ [tool.ruff.lint]
58
+ select = ["E", "F", "UP", "B", "SIM", "I", "ANN"]
59
+ ignore = ["ANN401"]
60
+
61
+ [project.optional-dependencies]
62
+ conform = [
63
+ "aevum-conformance",
64
+ ]
65
+ dev = [
66
+ "pytest>=8.0",
67
+ "pytest-asyncio>=0.23",
68
+ "mypy>=1.10",
69
+ "ruff>=0.9",
70
+ ]
@@ -1,14 +1,14 @@
1
- """
2
- aevum.cli -- Command-line interface for operating Aevum nodes.
3
-
4
- Usage: aevum <command> [options]
5
-
6
- Commands:
7
- version Print installed package versions
8
- server start Start the HTTP API server
9
- store migrate Migrate between graph backends
10
- complication Manage installed complications
11
- conformance run Run the conformance suite
12
- """
13
-
14
- __version__ = "0.4.0"
1
+ """
2
+ aevum.cli -- Command-line interface for operating Aevum nodes.
3
+
4
+ Usage: aevum <command> [options]
5
+
6
+ Commands:
7
+ version Print installed package versions
8
+ server start Start the HTTP API server
9
+ store migrate Migrate between graph backends
10
+ complication Manage installed complications
11
+ conformance run Run the conformance suite
12
+ """
13
+
14
+ __version__ = "0.4.0"
@@ -1,9 +1,9 @@
1
- """
2
- Entry point: aevum <command>
3
- Invoked via [project.scripts] aevum = "aevum.cli.__main__:app"
4
- """
5
-
6
- from aevum.cli.app import app
7
-
8
- if __name__ == "__main__":
9
- app()
1
+ """
2
+ Entry point: aevum <command>
3
+ Invoked via [project.scripts] aevum = "aevum.cli.__main__:app"
4
+ """
5
+
6
+ from aevum.cli.app import app
7
+
8
+ if __name__ == "__main__":
9
+ app()