Metadata-Version: 2.1
Name: pipmaster
Version: 0.1.0
Summary: A simple and versatile Python package manager for automating installation and verification across platforms.
Home-page: https://github.com/ParisNeo/pymanage
Author: ParisNeo
Author-email: parisneoai@gmail.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ascii-colors

# pymanage

[![GitHub stars](https://img.shields.io/github/stars/ParisNeo/pymanage.svg?style=social&label=Stars)](https://github.com/ParisNeo/pymanage)
[![PyPI version](https://badge.fury.io/py/pymanage.svg)](https://badge.fury.io/py/pymanage)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/ParisNeo/pymanage/blob/main/LICENSE)

A simple and versatile Python package manager for automating installation and verification across platforms.

## Installation

```
pip install pymanage
```

## Usage

```python
from pymanage import PackageManager

# Create a PackageManager instance
pm = PackageManager()

# Install a package
pm.install("requests")

# Check if a package is installed
is_installed = pm.is_installed("numpy")
print(f"NumPy is installed: {is_installed}")

# Get information about an installed package
package_info = pm.get_package_info("pandas")
print(package_info)
```

## Contributing

Contributions are welcome! Please open an issue or submit a pull request on the [GitHub repository](https://github.com/ParisNeo/pymanage).

## Author

- ParisNeo ([@ParisNeo_AI](https://twitter.com/ParisNeo_AI))

## Social

- Twitter: [@ParisNeo_AI](https://twitter.com/ParisNeo_AI)
- Discord: [https://discord.gg/BDxacQmv](https://discord.gg/BDxacQmv)
- Sub-Reddit: [r/lollms](https://www.reddit.com/r/lollms/)
- Instagram: [https://www.instagram.com/spacenerduino/](https://www.instagram.com/spacenerduino/)

## License

This project is licensed under the [Apache 2.0 License](LICENSE).
