Metadata-Version: 2.4
Name: PyRubik
Version: 0.1
Summary: A Python module to make speedcubing projects a piece of cake.
Home-page: https://github.com/Samuel-de-Oliveira/PyCubing/
Author: Samuel de Oliveira
Author-email: samwolfg12@gmail.com
License: MIT
Keywords: cubing rubik rubik's cube solver scramble cube
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Education
Classifier: Topic :: Games/Entertainment
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# PyRubik
A Python module to make speedcubing projects a piece of cake.

## How to install
```sh
pip install pyrubik
```

## Usage
This code generate a scramble for a 2x2x2 cube:
```python
from PyRubik import GetScramble

if __name__ == '__main__':
  scramble: list = GetScramble.Cube2x2x2() # Create the scramble
  print(f'A 2x2x2 Scramble: {scramble}')   # Show it
```

#### Made in Brazil :brazil:
