A lightweight Python package for simulating projectile motion with optional air drag using Numba acceleration.
- Numba-accelerated simulation
- Optional air resistance
- Automated testing with pytest
- GitHub Actions CI/CD
- Automatic documentation deployment
- Automated publishing to TestPyPI
pip install --index-url https://test.pypi.org/simple/ fasttrajectoryfrom fasttrajectory import simulate_projectile
x, y = simulate_projectile(
velocity=50,
angle_deg=45,
drag=0.01,
)https://waszka20.github.io/RSE-task1/fasttrajectory.html
GPL3.0 License