Metadata-Version: 2.1
Name: mojopack
Version: 0.1
Summary: mojopack is a tool for managing packages for the Mojo programming language.
Home-page: https://github.com/kernhanda/mojopack
Author: Kern Handa
Author-email: kern.handa@gmail.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.26.0
Requires-Dist: tqdm>=4.62.0

## mojopack

`mojopack` is a command-line tool for managing packages for the Mojo programming language. It allows you to list available packages, search for specific packages, and install packages from a central repository.

### Features

    List Packages: Get a list of all available packages in the Mojo package repository.
    Search Packages: Search for packages by name or keyword.
    Install Packages: Install packages and their dependencies from the repository.

### Installation

`mojopack` can be installed using `pip`:

```
pip install mojopack
```

### Usage

After installation, you can use the `mojopack` command from your terminal.

```
usage: mojopack.py [-h] {list,install,search} [name]

Manage packages for the Mojo programming language.

positional arguments:
  {list,install,search}
                        Action to perform.
  name                  Name of the directory to install or search for.

options:
  -h, --help            show this help message and exit
```

### List Packages

To list all available packages in the repository:

```
mojopack list
```

### Search Packages

To search for packages by name or keyword:

```
mojopack search <search_term>
```

Replace <search_term> with the name or keyword you want to search for.

### Install Packages

To install a package and its dependencies:

```
mojopack install <package_name>
```

Replace <package_name> with the name of the package you want to install.

### Contributing

Contributions to `mojopack` are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request on the GitHub repository.

### License

`mojopack` is released under the MIT License.
