Metadata-Version: 1.1
Name: edsudoku
Version: 2.0.dev1
Summary: Utility and website for generating solvable sudoku puzzles
Home-page: https://github.com/elidaian/edsudoku
Author: Eli Daian
Author-email: elidaian@gmail.com
License: GPL
Description: edsudoku
        ========
        
        This is an utility and website for generating solvable sudoku puzzles.
        
        Usage
        -----
        
        This utility can be used as a Python package, simply using `import edsudoku`.
        For example, a regular sudoku board can be generated as follows:
        
        ```
        import edsudoku
        board = edsudoku.generate(3, 3)
        ```
        
        In addition, edsudoku provides a WSGI web server application.
        This application can be used using the following script:
        
        ```
        from edsudoku.server import app as application.
        ```
        
        Contact
        -------
        
        For any issue, please contact Eli Daian <elidaian@gmail.com>.
        
Keywords: sudoku server
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Framework :: Flask
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Games/Entertainment :: Board Games
Classifier: Topic :: Games/Entertainment :: Puzzle Games
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
