Metadata-Version: 2.4
Name: rocketkdsbfsdbfkj
Version: 1.0.0
Summary: A small library for modelling rockets, shuttles and circle rockets
Home-page: https://github.com/ZakLr/rocket
Author: Zaki
Author-email: zaki@example.com
License: MIT
Project-URL: Source, https://github.com/ZakLr/rocket
Project-URL: Tracker, https://github.com/ZakLr/rocket/issues
Keywords: rocket simulation shuttle geometry
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: project-url
Dynamic: requires-python
Dynamic: summary

# rocket

`rocket` is a Python library for simulating rockets and shuttles in games or physics simulations.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install `rocket`.

```bash
pip install rocket
```

## Usage

```python
from rocket import Rocket, Shuttle

# Create a rocket
r = Rocket(0, 0)
print(r)  # A Rocket positioned at (0,0)

# Create a shuttle
s = Shuttle(10, 20, 5)
print(s)  # Shuttle(10,20, flights_completed=5)

# Calculate distance
dist = r.get_distance(s)
print(dist)
```

## License
[MIT](https://choosealicense.com/licenses/mit/)
