Skip to content

Commit 80ba3c1

Browse files
committed
Edit setup.py, version
1 parent 0de96ae commit 80ba3c1

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ print(mycube)
2222
```
2323
![alt tag](http://i.imgur.com/OI4kbn7.png)
2424

25-
We also provided some useful tools to deal with Rubik's Cube algorithms.
25+
We also provided some useful tools to deal with Rubik's Cube formulae.
2626

2727
``` python
2828

pycuber/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33

44
__all__ = ["Cube", "Cubie", "Centre", "Corner", "Edge", "Square", "Step", "Formula"]
55
__title__ = "PyCuber"
6-
__version__ = "0.1.4"
6+
__version__ = "0.2.0"
77
__author__ = "Adrian Liaw"
88
__license__ = "MIT"

setup.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
PyCuber
66
=======
77
8-
PyCuber is a Rubik's Cube simulator in Python 2/3.
8+
PyCuber is a Rubik's Cube package in Python 2/3.
99
--------------------------------------------------
1010
1111
The cube can be revealed as expanded view in the terminal, so it's easy
@@ -24,25 +24,25 @@
2424
2525
>>> print(mycube)
2626
27-
.. image:: https://camo.githubusercontent.com/906f83f4933fe1d0741b7d3ff43bda66fb464cdd/68747470733a2f2f7261772e6769746875622e636f6d2f61647269616e6c6961772f507943756265722f76302e31622f7374617469632f696d672f7465726d696e616c2e706e67
27+
.. image:: http://i.imgur.com/OI4kbn7.png
2828
29-
We also provided some useful tools to deal with Rubik's Cube algorithms.
29+
We also provided some useful tools to deal with Rubik's Cube formulae.
3030
3131
.. code-block:: python
3232
3333
3434
>>> import pycuber as pc
3535
36-
>>> # Create an Algo object
37-
>>> myalg = pc.Algo("R U R' U' R' F R2 U' R' U' R U R' F'")
36+
>>> # Create a Formula object
37+
>>> my_formula = pc.Formula("R U R' U' R' F R2 U' R' U' R U R' F'")
3838
39-
>>> # Reversing an Algo
40-
>>> myalg.reverse()
41-
>>> print(myalg)
39+
>>> # Reversing a Formula
40+
>>> my_formula.reverse()
41+
>>> print(my_formula)
4242
43-
>>> # Mirroring an Algo object
43+
>>> # Mirroring a Formula
4444
>>> myalg.mirror("LR")
45-
>>> print(myalg)
45+
>>> print(my_formula)
4646
4747
4848
F R U' R' U R U R2 F' R U R U' R'

0 commit comments

Comments
 (0)