Metadata-Version: 2.4
Name: eggr
Version: 1.0.1
Summary: A Python package that extracts the longest reachable increasing sequence from a list of numbers where each step cannot exceed a specified distance.
Author: Egglord
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file
Dynamic: requires-python

# eggr

A Python package that extracts the longest reachable increasing sequence from a list of numbers where each step cannot exceed a specified distance.

This is my fourth python library :D

Commands:

eggr.eggr(list,intiger) # Intiger determines the max jump length, and it favours bigger jumps, but if there aren't any bigger ones, it will do the biggest jump that isnt bigger than the maximum jump length.

!NB!

Use: pip install eggr

But, to import it to python: import eggr
