Skip to content

Commit

Permalink
refs #10: Reorganize a few things, may be an almost final version
Browse files Browse the repository at this point in the history
  • Loading branch information
geckon committed Dec 8, 2018
1 parent a614f52 commit d646718
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/37d712df43e44d6487bb35e015c27c47)](https://app.codacy.com/app/geckon/2-n_solitaire?utm_source=github.com&utm_medium=referral&utm_content=geckon/2-n_solitaire&utm_campaign=Badge_Grade_Dashboard)
[![Updates](https://pyup.io/repos/github/geckon/2-n_solitaire/shield.svg)](https://pyup.io/repos/github/geckon/2-n_solitaire/)

2<sup>n</sup> Solitaire is a simple game inspired by 2048 Solitaire (but more
generic) which is inspired by 2048 (but instead of tiles in a grid you collect
cards here). I find the game fun and satisfying and thus I decided to try and
implement it using Pygame. Here we are.
2<sup>n</sup> Solitaire (or TWN Solitaire) is a simple game inspired by
2048 Solitaire (but more generic) which is inspired by 2048 (but instead of
tiles in a grid you collect cards here). I find the game fun and
satisfying and thus I decided to try and implement it using Pygame. Here we are.

The goal of the game is to stack an endless row of cards into limited-size
columns. Each time you stack two cards of the same value one on the other,
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@

setup(
name='twn-solitaire',
version='0.0.1a5',
version='0.1.0a1',
packages=['twnsol', ],
package_dir={'twnsol': 'twnsol'}
package_data={'': ['LICENSE', 'assets/Jellee-Roman/*.txt'],
'twnsol': ['assets/Jellee-Roman/Jellee-Roman.otf']},
scripts=['solitaire.py', ],
url='https://github.com/geckon/2-n_solitaire',
license='GNU GPL v3',
Expand All @@ -26,7 +29,4 @@
"pygame == 1.9.4",
"toml == 0.10.0",
],
package_data={'': ['LICENSE', 'assets/Jellee-Roman/OFL.txt'],
'twnsol': ['assets/Jellee-Roman/Jellee-Roman.otf']},
package_dir={'requests': 'requests'}
)

0 comments on commit d646718

Please sign in to comment.