Metadata-Version: 2.4
Name: git-getpkg
Version: 0.2.0
Summary: Discover and easily install packages from Git repositories
Author: mergefriends
License: MIT License
        
        Copyright (c) 2026 mergefriends
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: bandit[toml]>=1.8
Requires-Dist: pip-audit>=2.10
Requires-Dist: pipx<2,>=1.7
Requires-Dist: rich<14,>=13.5.2
Requires-Dist: tomli>=2.0; python_version < "3.11"
Dynamic: license-file

# git-getpkg

`git getpkg` discovers packages in a local directory or Git repository,
then installs selected Python packages into isolated managed environments.

## Install

```bash
brew install pipx && pipx ensurepath && pipx install git-getpkg
```

## Usage
Find all packages in a repo
```bash
git getpkg list https://github.com/psf/black
```
Find all packages in an organization
```bash
git getpkg list https://github.com/psf
```
Install all packages in a repo
```bash
git getpkg https://github.com/psf/black
```
Install a single package from a repo
```bash
git getpkg https://github.com/psf/black black
```

## Develop, build, and test locally

Requires Python 3.10+ and pipx. From the repository root:

```bash
pipx install --editable . --force
pipx run pytest -q
git getpkg list .
g```
