Metadata-Version: 2.1
Name: vstutils
Version: 1.1.7
Summary: VST Utils for fast create web-application
Home-page: https://github.com/vstconsulting
Author: VST Consulting
Author-email: sergey.k@vstconsulting.net
License: Apache Software License
Project-URL: Issue Tracker, https://github.com/vstconsulting/vstutils/issues
Project-URL: Source Code, https://github.com/vstconsulting/vstutils
Project-URL: Releases, https://pypi.org/project/vstutils/#history
Description: VST Utils
        =========
        
        Small lib for easy generates web-applications.
        
        
        Quickstart
        ----------
        
        1. Install package: `pip install vstutils`
        
        2. Create package 'prj' with minimal `__init__.py` and `__main__.py`
        
        3. Paste to `__init__.py`:
        
           .. sourcecode:: python
        
              from vstutils.environment import prepare_environment, cmd_execution
        
              __version__ = '1.0.0'
        
              settings = {
                  "VST_PROJECT": 'prj',
                  "VST_ROOT_URLCONF": 'vstutils.urls',
                  "VST_WSGI": 'vstutils.wsgi',
                  "VST_PROJECT_GUI_NAME": "Example Project"
              }
        
              prepare_environment(**settings)
        
        4. Paste to `__main__.py`:
        
           .. sourcecode:: python
        
              from vstutils.environment import cmd_execution, sys
              sys.path.append('./')
              import prj
        
              cmd_execution()
        
        5. Run `python prj runserver 0.0.0.0:8081 --insecure`
        
        6. Enjoy!
        
        See example in `test_src/test_proj`.
        
        
        License
        -------
        
        Apache Software License
        
        
Keywords: polemarch,polemarchplus,web,app
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Utilities
Provides-Extra: coreapi
Provides-Extra: doc
Provides-Extra: rpc
Provides-Extra: ldap
Provides-Extra: test
Provides-Extra: prod
