Metadata-Version: 2.4
Name: ecdysys
Version: 0.1.4
Summary: Python CLI to update your system packages
Project-URL: Homepage, https://github.com/claymorwan/ecdysys
Project-URL: Issues, https://github.com/claymorwan/ecdysys/issues
Author-email: claymorwan <claymorwan@fembois.dev>
License-Expression: MIT
License-File: LICENSE
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.13
Requires-Dist: build>=1.2.2.post1
Requires-Dist: colorama==0.4.6
Requires-Dist: hatchling>=1.27.0
Requires-Dist: toml==0.10.2
Requires-Dist: twine>=6.1.0
Description-Content-Type: text/markdown

# Ecdysys

Little CLI tool to print and update system
Currently supported package managers are:
- `pacman` (requires `pacman-contrib` as well)
- `yay` and `paru` (aur support)
- `flatpak`
## Installation
### From Pypi
```shell
pip install ecdysys
```
### From the Aur
```shell
paru -S python-ecdysys
```
2. Create a `config.toml` file, these are the following entry available

| Entry                    | Usage                                                     | Valid entry                                           | Example                       |
|--------------------------|-----------------------------------------------------------|-------------------------------------------------------|-------------------------------|
| `pkg_managers`*          | package manager to use                                    | any of the supported package manager (list of string) | `[ "pacman", "flatpak" ]`     |
| `aur_helper`             | aur helper to use (`pacman` must be set in `pkg_managers` | any of the supported aur helper (string)              | `"paru"`                      |
| `post_install_script`    | path to script ot run after installation                  | path to file (string)                                 | `path/to/script`              |
| `args_<package manager>` | arguments for any of the selected package manager         | string                                                | `args_pacman = "--noconfirm"` |

*Must be set

## Usage
```shell
usage: ecdysys [-h] [-l] [-u]

Python CLI to update your system packages

options:
  -h, --help    show this help message and exit
  -l, --list    List available updates
  -u, --update  Update package
```