Metadata-Version: 2.4
Name: platform-checker
Version: 0.2.2
Summary: A simple package for checking the platform type.
Home-page: https://github.com/yourusername/platform_checker
Author: Aditya Sriram
Author-email: Aditya Sriram <adisriram7777@gmail.com>
License: MIT
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# Platform Checker

Platform Checker is a Python package designed to identify and validate the platform or environment where your application is running. It helps ensure compatibility and provides insights for debugging and optimization.

## Features

- Detects operating system and version.
- Identifies hardware architecture.
- Checks for installed dependencies.
- Provides detailed environment reports.

## Installation

Install the package using pip:

```bash
pip install platform-checker
```

## Usage

Import and use the package in your Python code:

```python
import platform_checker

if is_windows():
    print("Your OS is Windows!")
```

## Contributing

Contributions are welcome! Please fork the repository, create a new branch, and submit a pull request.

## License

This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
