Metadata-Version: 2.1
Name: pydist-cli
Version: 0.1.0
Summary: CLI for uploading and downloading Python packages from pydist.com.
Home-page: https://github.com/alexbecker/pydist-cli
Author: Alex Becker
Author-email: alex@pydist.com
License: MIT
Keywords: packaging dependencies
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: pip (>=10.0)
Requires-Dist: setuptools (>=39.0)
Requires-Dist: wheel
Requires-Dist: twine

# pydist-cli

A command-line interface for [PyDist](https://pydist.com).

## Configuration

The only thing you *need* to configure is your PyDist API key, via:
- the `PYDIST_API_KEY` environment variable, or
- the `--api-key` command-line flag, or
- a `.pydist.json` file in your home directory or the directory you are running `pydist` from.

## Usage

- Installation: `pydist install <package>` will install a package from your PyDist account. If
the package is not available on PyDist or you cannot connect to PyDist for some reason, it will
fall back to PyPI.
- Publish: `pydist publish` in the root directory of your package will build, check,
and upload your packages to PyDist, in both source and binary wheel form.


