Metadata-Version: 2.1
Name: xarg-python
Version: 1.1
Summary: Simple command-line tool based on argparse.
Home-page: https://github.com/bondbox/xarg-python
Author: Mingzhe Zou
Author-email: zoumingzhe@outlook.com
License: MIT
Project-URL: Source Code, https://github.com/bondbox/xarg-python
Project-URL: Bug Tracker, https://github.com/bondbox/xarg-python/issues
Project-URL: Documentation, https://github.com/bondbox/xarg-python
Keywords: command,command-line,argparse,xarg
Platform: any
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: argcomplete>=3.2.1
Requires-Dist: tabulate

xarg
====

Simple command-line tool based on `argparse`.

Language
--------

- **[简体中文](docs/zh/README.md)**

Features
--------

- **Quickly create command line programs based on `Python`**
- **Built in logger module and management options**
- **Manage completion via [xargcomplete](docs/xargcomplete.md)**

Requires
--------

- `Python` >= 3.8

Build
-----

Fast build and install via [xpip](https://github.com/bondbox/xpip-python):

```shell
xpip-build setup --clean --all --install
```

or build via shell:

```shell
rm -rf "build" "dist" "*.egg-info"
python setup.py check sdist bdist_wheel --universal
```
