Metadata-Version: 2.1
Name: pkg-cli
Version: 3.0.0
Summary: the package manager for Python
Home-page: UNKNOWN
Author: Hashem
Author-email: PersonalHashem@gmail.com
License: MIT
Project-URL: Source, https://github.com/githashem/pkg-cli
Project-URL: Tracker, https://github.com/githashem/pkg-cli/issues
Keywords: pypi,package,pkg-cli,pkg
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

[![version]](https://pypi.org/project/pkg-cli/)
[![python versions]](https://python.org)
[![license]](https://github.com/githashem/pkg-cli/blob/main/LICENSE)

## What is pkg-cli?
>pkg-cli is a command-line tool for Making a Python package that is configured with the standard **'setup.cfg'** file.

## Installation

```shell
pip install pkg-cli
```

## Usage
Create a 'setup.cfg' file
```shell
pkg init
```

Publish package to PyPi
```shell
pkg publish
```

If the 'pkg' command does not work, you can use the following command :
```shell
python -m pkg <command>
```

<!-- MarkDown Links -->
[version]: https://img.shields.io/pypi/v/pkg-cli?label=version&style=flat-square
[license]: https://img.shields.io/pypi/l/pkg-cli?style=flat-square
[python versions]: https://img.shields.io/pypi/pyversions/pkg-cli?style=flat-square


