A Python card game package
Contents:
Cards:
--Shuffle.py - a realistic shuffling package that simulates the actual shuffling process instead of uses a simple RNG
--Cards.py - containst definitions for various card classes. Currently, PlayingCard is the only class defined
--Dealer.py - Interface to handle dealing deck out
Solitare:
--Game.py - a simple game of solitare to demonstrate using the Cards package