Metadata-Version: 2.4
Name: rocket-amina
Version: 0.1.0
Summary: A simple package simulating rockets and circular rockets.
Home-page: https://github.com/yourusername/rocket
Author: Fezazi Amina Khadidja
Author-email: your.email@example.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.text
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# Rocket Project

A simple Python project that models rockets and their behavior.  
It includes different types of rockets such as:
- **Rocket** — the base class representing a rocket in 2D space  
- **Shuttle** — a reusable rocket with a number of completed flights  
- **CircleRocket** — a rocket modeled as a circle with a given radius  

##  Features

- Move rockets in a 2D coordinate system
- Calculate distances between rockets
- Compute area and circumference for circular rockets
- Demonstrate inheritance and method overriding in Python

##  Classes Overview

### `Rocket`
Represents a basic rocket with coordinates `(x, y)`.

### `Shuttle`
Inherits from `Rocket` and adds a `flights_completed` attribute.

### `CircleRocket`
Inherits from `Rocket` and adds:
- `r` → the radius of the rocket
- `get_area()` → returns π * r²  
- `get_circumference()` → returns 2 * π * r

## 🧩 Installation

Make sure you have Python installed.  
You can clone this repository and run the examples in Jupyter Notebook or any IDE.

```bash
git clone https://github.com/Amina212004/rocket.git
cd rocket-project
