Metadata-Version: 2.4
Name: rubik_impl
Version: 0.1
Summary: Implementation of Rubik's cube moves
Author-email: RadoTheProgrammer <rrrado15@gmail.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.13
Requires-Dist: numpy>=2.2.5
Description-Content-Type: text/markdown

Implementation of Rubik's cube moves

To install it, run `pip install rubik_impl`

Usage:
```python
import rubik_impl
cube = rubik_impl.Cube()
cube.U() # apply a U move on the cube
cube.Ui() # apply Ui move
cube.apply("R U Ri Ui") # apply an algorithm on the cube
print(cube) # show the cube
```


