Skip to content

Commit

Permalink
Fix package description formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
orome committed Nov 2, 2023
1 parent 7a2a2b9 commit a20f893
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions automata/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
"""
A simple Python (3.10+) implementation aimed at simulating some cellular automata,
primarily those focused on by Stephan Wolfram in his book "A New Kind of Science".
A simple Python (3.10+) implementation aimed at simulating some cellular automata, primarily those focused on by Stephan Wolfram in his book "A New Kind of Science".
Functionality is currently limited to 1D, multi-state, immediate neighbor automata,
using various boundary conditions.
Functionality is currently limited to 1D, multi-state, immediate neighbor automata using various boundary conditions.
"""

# USE - Not needed if specified in pyproject.toml
Expand All @@ -15,7 +13,7 @@
# USE - To indicate status of release, can be on any branch
__pre_release__ = 'a3' # aN | bN | rcN
# USE - For all commits on develop branch, never on main branch, increment after each commit (that publishes)
__suffix__ = '.dev16' # .devN | (.postN)
__suffix__ = '.dev17' # .devN | (.postN)
__version__ = __release__ + __pre_release__ + __suffix__

from .core import *

0 comments on commit a20f893

Please sign in to comment.