Metadata-Version: 2.4
Name: fpm-cli
Version: 0.2.1
Summary: Fast Package Manager for Python — binary distribution
Author: Kartikey Yadav
License: MIT
Project-URL: Homepage, https://github.com/Kartikey2011yadav/fpm
Project-URL: Repository, https://github.com/Kartikey2011yadav/fpm
Project-URL: Issues, https://github.com/Kartikey2011yadav/fpm/issues
Keywords: package-manager,python,pip,fast,install
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: System :: Installation/Setup
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# fpm-cli

**Fast Package Manager for Python** — binary distribution via pip.

This package provides the `fpm` command by downloading the pre-built binary for
your platform (macOS, Linux, Windows — Intel and ARM).

## Installation

```bash
pip install fpm-cli
```

## Usage

After installation, `fpm` is available:

```bash
fpm --help
fpm init myproject
fpm install requests
```

## What this package does

This is a thin Python wrapper that:

1. Downloads the correct `fpm` binary for your OS/architecture
2. Places it alongside your Python scripts
3. Proxies all commands to the native binary

The actual `fpm` tool is written in Go for maximum performance.

## Platforms

| OS      | Architecture | Supported |
| ------- | ------------ | --------- |
| Linux   | x86_64       | ✓         |
| Linux   | arm64        | ✓         |
| macOS   | x86_64       | ✓         |
| macOS   | arm64 (M1+)  | ✓         |
| Windows | x86_64       | ✓         |

## More information

- [GitHub](https://github.com/Kartikey2011yadav/fpm)
- [Documentation](https://github.com/Kartikey2011yadav/fpm/tree/main/docs)
