fleetpm 0.0.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.
- fleetpm-0.0.0/PKG-INFO +20 -0
- fleetpm-0.0.0/README.md +7 -0
- fleetpm-0.0.0/pyproject.toml +17 -0
- fleetpm-0.0.0/src/fleetpm/__init__.py +1 -0
fleetpm-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: fleetpm
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: A package manager for AI capabilities across your machines, that never serves. Name reserved; releases begin at 0.1.0.
|
|
5
|
+
Project-URL: Homepage, https://fleetpm.sh
|
|
6
|
+
Project-URL: Repository, https://github.com/solverfleet/fleetpm
|
|
7
|
+
License-Expression: Apache-2.0
|
|
8
|
+
Keywords: ai,cli,fleet,llm,package-manager
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# fleetpm
|
|
15
|
+
|
|
16
|
+
This name is reserved for [fleetpm](https://github.com/solverfleet/fleetpm),
|
|
17
|
+
a package manager for AI capabilities across your machines, that never
|
|
18
|
+
serves. Releases begin at 0.1.0; this version does nothing.
|
|
19
|
+
|
|
20
|
+
Site: https://fleetpm.sh
|
fleetpm-0.0.0/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "fleetpm"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "A package manager for AI capabilities across your machines, that never serves. Name reserved; releases begin at 0.1.0."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
keywords = ["ai", "llm", "fleet", "package-manager", "cli"]
|
|
13
|
+
classifiers = ["Development Status :: 1 - Planning", "License :: OSI Approved :: Apache Software License"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://fleetpm.sh"
|
|
17
|
+
Repository = "https://github.com/solverfleet/fleetpm"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Reserved name for fleetpm. Releases begin at 0.1.0; this version does nothing."""
|