Metadata-Version: 2.1
Name: worlds_creator
Version: 0.1.0
Summary: A package to create and view worlds.
Home-page: https://github.com/sun2ii/worlds
Author: Your Name
Author-email: benbasuni1@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Worlds

**Worlds** is a Python package designed for creating and visualizing unique worlds. It provides utilities for managing colors, world creation, and viewing.

## Features

- 🌍 **World Creation**: Tools to create and customize new worlds.
- 🎨 **Color Utilities**: Handy methods for managing color schemes.
- 👀 **View Worlds**: Visualize and interact with your created worlds.

## Installation

Install the package via pip:

```bash
pip install worlds
```

## Usage

### Basic Example

```python
from utils.create_world import create_world
from utils.view_worlds import view_world

# Create a new world
world = create_world(name="FantasyLand", size=10)

# Visualize the world
view_world(world)
```

## Project Structure

```bash
worlds/
├── LICENSE                # License file
├── README.md              # Project description
├── main.py                # Main entry point
├── data/                  # Data files
│   └── __init__.py
├── utils/                 # Utility modules
│   ├── colors.py          # Color utilities
│   ├── create_world.py    # World creation utilities
│   ├── view_worlds.py     # World viewing utilities
│   └── __init__.py
```

## License

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

## Contributing

Contributions are welcome! Please read the [CONTRIBUTING.md](CONTRIBUTING.md) file for guidelines on how to contribute to this project.

## Acknowledgments

- Inspiration and ideas from various world-building communities.
- Contributions from open-source enthusiasts.

## Contact

For any questions or suggestions, feel free to open an issue or contact the maintainers.

---

Happy world-building! 🌍🎨
