pyvolt-cli 0.0.1__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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Will Abbott
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,65 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyvolt-cli
3
+ Version: 0.0.1
4
+ Summary: The command-line companion to pyvolt: managed Python deployments on infrastructure you actually own.
5
+ Project-URL: Homepage, https://pyvolt.com
6
+ Project-URL: Repository, https://github.com/pyvolt-hq/pyvolt-cli
7
+ Project-URL: Issues, https://github.com/pyvolt-hq/pyvolt-cli/issues
8
+ Author-email: Will Abbott <will@digitaloutback.co.uk>
9
+ Maintainer-email: PyVolt HQ <will@digitaloutback.co.uk>
10
+ License: MIT
11
+ License-File: LICENSE
12
+ Keywords: deployment,digitalocean,django,fastapi,flask,hetzner,paas,python,vps
13
+ Classifier: Development Status :: 1 - Planning
14
+ Classifier: Environment :: Console
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
23
+ Classifier: Topic :: Software Development :: Build Tools
24
+ Classifier: Topic :: System :: Installation/Setup
25
+ Classifier: Topic :: System :: Systems Administration
26
+ Requires-Python: >=3.10
27
+ Description-Content-Type: text/markdown
28
+
29
+ # pyvolt-cli
30
+
31
+ The terminal companion to [pyvolt](https://pyvolt.com): managed Python deployments on infrastructure you actually own.
32
+
33
+ ## Status
34
+
35
+ This is a **placeholder release (0.0.1)**. It installs the `pyvolt` command onto `$PATH` and prints a "coming soon" banner. Real subcommands (`pyvolt deploy`, `pyvolt logs`, `pyvolt scale`, and friends) land in a future release.
36
+
37
+ Follow along at:
38
+
39
+ - Website: <https://pyvolt.com>
40
+ - Repository: <https://github.com/pyvolt-hq/pyvolt-cli>
41
+ - Issues: <https://github.com/pyvolt-hq/pyvolt-cli/issues>
42
+
43
+ ## Install
44
+
45
+ ```bash
46
+ pip install pyvolt-cli
47
+ ```
48
+
49
+ The distribution name on PyPI is `pyvolt-cli`; the installed command on your `$PATH` is `pyvolt`.
50
+
51
+ ## Verify
52
+
53
+ ```bash
54
+ pyvolt
55
+ ```
56
+
57
+ Prints the version banner. If you see it, the entry point is wired correctly.
58
+
59
+ ## Requires
60
+
61
+ Python 3.10 or newer.
62
+
63
+ ## License
64
+
65
+ MIT. See [LICENSE](LICENSE).
@@ -0,0 +1,37 @@
1
+ # pyvolt-cli
2
+
3
+ The terminal companion to [pyvolt](https://pyvolt.com): managed Python deployments on infrastructure you actually own.
4
+
5
+ ## Status
6
+
7
+ This is a **placeholder release (0.0.1)**. It installs the `pyvolt` command onto `$PATH` and prints a "coming soon" banner. Real subcommands (`pyvolt deploy`, `pyvolt logs`, `pyvolt scale`, and friends) land in a future release.
8
+
9
+ Follow along at:
10
+
11
+ - Website: <https://pyvolt.com>
12
+ - Repository: <https://github.com/pyvolt-hq/pyvolt-cli>
13
+ - Issues: <https://github.com/pyvolt-hq/pyvolt-cli/issues>
14
+
15
+ ## Install
16
+
17
+ ```bash
18
+ pip install pyvolt-cli
19
+ ```
20
+
21
+ The distribution name on PyPI is `pyvolt-cli`; the installed command on your `$PATH` is `pyvolt`.
22
+
23
+ ## Verify
24
+
25
+ ```bash
26
+ pyvolt
27
+ ```
28
+
29
+ Prints the version banner. If you see it, the entry point is wired correctly.
30
+
31
+ ## Requires
32
+
33
+ Python 3.10 or newer.
34
+
35
+ ## License
36
+
37
+ MIT. See [LICENSE](LICENSE).
@@ -0,0 +1,62 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.24"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "pyvolt-cli"
7
+ version = "0.0.1"
8
+ description = "The command-line companion to pyvolt: managed Python deployments on infrastructure you actually own."
9
+ readme = "README.md"
10
+ license = { text = "MIT" }
11
+ requires-python = ">=3.10"
12
+ authors = [
13
+ { name = "Will Abbott", email = "will@digitaloutback.co.uk" },
14
+ ]
15
+ maintainers = [
16
+ { name = "PyVolt HQ", email = "will@digitaloutback.co.uk" },
17
+ ]
18
+ keywords = [
19
+ "deployment",
20
+ "paas",
21
+ "python",
22
+ "django",
23
+ "flask",
24
+ "fastapi",
25
+ "vps",
26
+ "hetzner",
27
+ "digitalocean",
28
+ ]
29
+ classifiers = [
30
+ "Development Status :: 1 - Planning",
31
+ "Environment :: Console",
32
+ "Intended Audience :: Developers",
33
+ "License :: OSI Approved :: MIT License",
34
+ "Operating System :: OS Independent",
35
+ "Programming Language :: Python :: 3",
36
+ "Programming Language :: Python :: 3.10",
37
+ "Programming Language :: Python :: 3.11",
38
+ "Programming Language :: Python :: 3.12",
39
+ "Programming Language :: Python :: 3.13",
40
+ "Topic :: Software Development :: Build Tools",
41
+ "Topic :: System :: Installation/Setup",
42
+ "Topic :: System :: Systems Administration",
43
+ ]
44
+
45
+ [project.urls]
46
+ Homepage = "https://pyvolt.com"
47
+ Repository = "https://github.com/pyvolt-hq/pyvolt-cli"
48
+ Issues = "https://github.com/pyvolt-hq/pyvolt-cli/issues"
49
+
50
+ [project.scripts]
51
+ pyvolt = "pyvolt_cli.__main__:main"
52
+
53
+ [tool.hatch.build.targets.wheel]
54
+ packages = ["pyvolt_cli"]
55
+
56
+ [tool.hatch.build.targets.sdist]
57
+ include = [
58
+ "pyvolt_cli",
59
+ "README.md",
60
+ "LICENSE",
61
+ "pyproject.toml",
62
+ ]
@@ -0,0 +1,8 @@
1
+ """pyvolt-cli: the terminal companion to pyvolt.
2
+
3
+ This is a placeholder release that reserves the ``pyvolt`` command on the
4
+ user's ``$PATH``. Real subcommands land in a future release. See
5
+ https://pyvolt.com for status.
6
+ """
7
+
8
+ __version__ = "0.0.1"
@@ -0,0 +1,32 @@
1
+ """Entry point for the ``pyvolt`` command.
2
+
3
+ The pyproject.toml maps ``[project.scripts] pyvolt`` to :func:`main` in this
4
+ module. Running ``pyvolt`` after ``pip install pyvolt-cli`` lands here.
5
+ """
6
+
7
+ from __future__ import annotations
8
+
9
+ import sys
10
+
11
+ from . import __version__
12
+
13
+
14
+ BANNER = f"""
15
+ pyvolt {__version__}
16
+
17
+ Managed Python deployments on infrastructure you actually own.
18
+
19
+ This CLI is a placeholder release. Real subcommands land in a future
20
+ version. Track progress at https://pyvolt.com and
21
+ https://github.com/pyvolt-hq/pyvolt-cli.
22
+ """.strip()
23
+
24
+
25
+ def main() -> int:
26
+ """Print a coming-soon banner and exit cleanly."""
27
+ print(BANNER)
28
+ return 0
29
+
30
+
31
+ if __name__ == "__main__": # pragma: no cover
32
+ sys.exit(main())
File without changes