Metadata-Version: 2.1
Name: vipassana-timer
Version: 1.0
Summary: A small meditation timer for vipassana
Home-page: https://github.com/toxicologist/vipassana-timer
Author: toxicologist
Author-email: toxiccologist@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/toxicologist/vipassana-timer/issues
Description: # vipassana-timer
        Meditation timer for vipassana (insight meditation) with different postures
        
        ## Requirements
         - simpleaudio
        
        ## Installation
        ```sh
        pip install vipassana-timer
        ```
        
        or
        
        ```sh
        git clone https://github.com/toxicologist/vipassana-timer
        cd vipassana-timer
        python setup.py install
        ```
        
        ## Usage
        ```sh
        meditate
        ```
        
        The script takes inputs for the three postures: prostration, walking, and sitting -
        represented by the letters 'p', 'w', 's', each followed by the desired time, in minutes.
        
        For example, if you wanted 10 minutes walking and 10 sitting:
        ```sh
        # example usage
        >meditate
        Enter times (format: 'p5w30s30'): w10s10
        
        Times:
        Walking: 10
        Sitting: 10
        
        Walking: 10:00 remaining
        ```
        
        Or, if you only want to do 35 minutes of sitting:
        ```sh
        >meditate
        Enter times (format: 'p5w30s30'): s35
        
        Times:
        Sitting: 35
        
        Sitting: 35:00 remaining
        ```
        
        If you want to add your own posture, just edit the `POSTURES` variable in `__init__.py`.
        
        
        Good luck meditating! :)
        
Keywords: meditation
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: ~=3.5
Description-Content-Type: text/markdown
