Metadata-Version: 1.1
Name: pybaccarat
Version: 0.12
Summary: Play the card game Baccarat
Home-page: https://github.com/fulkgl/PyBaccarat
Author: George L Fulk
Author-email: fulkgl@gmail.com
License: MIT
Description: # PyBaccarat
        Play the card game Baccarat
        
        To check out a copy of the source:
            cd base-location
            git clone https://github.com/fulkgl/PyBaccarat.git
        
        Run each of the following with:
            Python 2.7.13
        
        Run unit tests:
            cd base-location
            <br>python tests\unittest_card.py
            <br>python tests\unittest_shoe.py
            <br>python tests\unittest_hand.py
            <br>python tests\unittest_scoreboard.py
        
        To check the coding standards and minor quality check:
            cd base-location
            <br>pycodestyle pybaccarat\playingcards.py
            <br>pycodestyle pybaccarat\baccarat.py
            <br>pycodestyle pybaccarat\baccaratsystems.py
            <br>pycodestyle bin\play_baccarat.py
            <br>pylint --rcfile=\usr\local\bin\pylint2.rc pybaccarat\playingcards.py
            <br>pylint --rcfile=\usr\local\bin\pylint2.rc pybaccarat\baccarat.py
            <br>pylint --rcfile=\usr\local\bin\pylint2.rc pybaccarat\baccaratsystems.py
            <br>pylint --rcfile=\usr\local\bin\pylint2.rc bin\play_baccarat.py
        
        To run the build and make distribution packages:
            cd base-location
            <br>python setup.py sdist bdist_egg
            <br>rem dist/* contains source and binary distribution packages
        
        <h2>Updating this code</h2>
        <ol compact>
        <li>Clean up temp files.</li>
        <ol compact>
        <li>del /s/q build dist pybaccarat.egg-info</li>
        <li>rmdir /s/q build dist pybaccarat.egg-info</li>
        <li>del /s/q tests\*.pyc pybaccarat\*.pyc</li>
        </ol>
        <li>GIT (source control library)</li>
        <ol compact>
        <li><B>git clone https://github.com/fulkgl/PyBaccarat.git</B>
        <BR>This will make a copy of code from a remote host to local, 
        setting up 3 trees (working directory, index, and head). 
        What you normally see is the working directory. The index and head
        trees are inside the .git directory.</li>
        <li><b>git status</b><BR>Shows you files missing from git and files
        that are changed.</li>
        <li><b>git diff README.md</B><br>Git diff will show you
        changed files differences.
        <li><b>git add README.md</b><br>Use the git add
        command to move changes from the working directory to the index.
        Files that are new from the repo are initially checked in with
        the git add command. Files that have been changed are also 
        check in this way. You often use git add one file at a time since
        you specify each file with this command. Use "git reset file"
        to reverse the effects of a git add command.</li>
        <li><b>git commit -m "description"</b><br>Use the git commit 
        command to move changes from the index to the head.
        You will do this for all the git added files once.
        Use "git checkout" to reverse the effects of a git commit.</li>
        <li><b>git push origin master</b><br>Use the git push command to 
        move changes from the head to
        the remote host.</li>
        <li>git init is used to create a new repo the first time.
        Also a git remote add origin is used the first time to
        associate a connection to the remote host.</li>
        <li><B>browser https://github.com/fulkgl/PyBaccarat</B>
        <br>See that the latest things look correct on the webpage.</li>
        </ol>
        <li>Build the code</li>
        <br>python setup.py build bdist sdist
        <br>
        <li>update PiPy</li>
        <li>build, test, install</li>
        @rem python setup.py build bdist sdist upload
        </ol>
        
Keywords: playing cards game Baccarat
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Software Development :: Libraries :: Python Modules
