Metadata-Version: 1.0
Name: winterstone
Version: 0.8.6.5
Summary: Framework for PyQt application
Home-page: http://averrin.github.com/inkmoth
Author: Averrin
Author-email: averrin@gmail.com
License: GPL v3
Description: About
        -----
        
        Winterstone -- framework for PyQt application.
        
        Features
        --------
        
        Template for application
        Some pre-defined UI
        Settings manager
        Plugins
        Dev tools
        
        Quick start
        -----------
        
        * Install (see docs/DEPS for optional dependencies)
        * Run winter_admin.py new appname (its created appname dir with simple application)
        * Fill appname/config/main.cfg with your data
        * Run appname/main.py
        * See docs folder and source of main.py for other information
        
        Project folder structure
        ------------------------
        
        .
        ├── config
        │   ├── debug.cfg   --  options of debug widget (WinterDebug)
        │   ├── main.cfg    --  options of application. use this file for your settings
        │   └── plugins.cfg --  list of active plugins. do not edit
        ├── etc
        │   └── pre-commit  --  hook for git. do winter_ver.py before commit (bump version in main.cfg)
        ├── icons           --  some icons. place your icons here
        ├── plugins         --  usful examples of plugins
        │   ├── QSciConfig
        │   │   ├── plugin.cfg
        │   │   └── QSciConfig.py
        │   └── UIConfig
        │       ├── plugin.cfg
        │       └── UIConfig.py
        ├── ABOUT           --  information about your application
        ├── core.py         --  main logic of your app
        ├── __init__.py
        ├── LICENSE
        ├── main.py         --  main executable file. all UI logic here
        └── TODO
        
        
        
        Lib structure
        -------------
        
        .
        ├── base.py         --  base classes of library
        ├── baseQt.py       --  base classes of UI
        ├── extraQt.py      --  some extra widgets
        ├── snowflake.py    --  small useful functions
        └── winterBug.py    --  all about debug widget
        
Keywords: pyqt plugins framework
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Utilities
Classifier: Environment :: X11 Applications :: Qt
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Software Development :: User Interfaces
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
