Metadata-Version: 1.1
Name: CountDownApp
Version: 0.0.1
Summary: Count Down Timer Application
Home-page: https://github.com/Himenon/CountDownApp
Author: K.Himeno
Author-email: k.himeno314@gmail.com
License: MIT
Description: ================================
        COUNT Down Timer Application
        ================================
        
        This is the GUI countdown timer.
        
        Install
        =======
        
        .. code-block:: sh
        
          pip install CountDownApp
        
        Usage
        =====
        
        The window will be launched when executing the following code.
        
        .. code-block:: python
        
          from CountDownApp.app import CountDownTimer
          
          app = CountDownTimer(
            titleText="Title Text", 
            finishTime="2017-01-01 00:00:00",  # Format: YYYY-mm-DD HH:MM:SS
            footerText="Footer Text", 
            baseFontSize=100
          )
          
          app.run()
        
Keywords: timer
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Desktop Environment
