Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.14
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Flight Sim

A flight simulation framework

## Installation

This project uses [uv](https://docs.astral.sh/uv/) for package management.

```bash
uv sync # Creates virtual environment and installs dependencies
```

## Usage

Run the main simulation:

```bash
uv run flight_sim.py
```
12 changes: 12 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[project]
name = "flight-sim"
version = "0.1.0"
description = "A flight simulation framework"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"matplotlib>=3.10.7",
"numpy>=2.3.5",
"pymap3d>=3.2.0",
"scipy>=1.16.3",
]
Loading