Metadata-Version: 2.4
Name: waterrocketpy
Version: 0.2.1
Summary: A modular Python package for simulating water rockets.
Author-email: Pablo M <pablo.marg8@gmail.com>
License: MIT License
Project-URL: Homepage, https://github.com/Cube002/waterrocketpy
Keywords: waterrocketpy
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
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.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: matplotlib
Provides-Extra: extra
Requires-Dist: pandas; extra == "extra"
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: coverage; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Requires-Dist: mypy; extra == "dev"
Provides-Extra: all
Requires-Dist: waterrocketpy[extra]; extra == "all"
Requires-Dist: waterrocketpy[dev]; extra == "all"
Dynamic: license-file

# waterrocketpy


[![image](https://img.shields.io/pypi/v/waterrocketpy.svg)](https://pypi.python.org/pypi/waterrocketpy)
[![image](https://img.shields.io/conda/vn/conda-forge/waterrocketpy.svg)](https://anaconda.org/conda-forge/waterrocketpy)

[![Build Status](https://github.com/yourusername/yourrepo/actions/workflows/ci.yml/badge.svg)](https://github.com/yourusername/yourrepo/actions)

[![Build Status](https://github.com/Cube002/waterrocketpy/actions/workflows/windows.yml/badge.svg)](https://github.com/Cube002/waterrocketpy/actions)




**A modular Python package for simulating water rockets.**


-   Free software: MIT License
-   Documentation: https://Cube002.github.io/waterrocketpy
    

## Features

-   Simulates Waterrockets and provides time series values of Altetude, Speed, Waterconsumption, Airpressure, Air Temperature and much more!
-   To install, just do pip install waterrocketpy

## Project File Organization and Thoughts
### Structure:
    -waterrocketpy/
    -    ├── .github/
    -    │   ├── ISSUE_TEMPLATE/
    -    │   └── workflows/
    -    ├── docs/
    -    │   ├── examples/                   //documentation-specific assets.
    -    │   ├── literature_sources/
    -    │   ├── overrides/
    -    │   ├── reference_runs/
    -    │   └── thinking/
    -    ├── examples/                       //for user-facing demos or runnable use-cases.
    -    │   ├── ...
    -    ├── tests/
    -    │   ├── ...
    -    ├── waterrocketpy/                  //what gets published on PyPI
    -    │   ├── analysis/
    -    │   ├── core/
    -    │   ├── data/
    -    │   ├── legacy/
    -    │   ├── optimization/
    -    │   ├── rocket/
    -    │   ├── utils/
    -    │   └── visualization/
    -    ├── .gitignore
    -    ├── pyproject.toml
    -    ├── README.md
    -    └── setup.cfg / setup.py            //dont need these pyhthon 3.6 or higher 
