Metadata-Version: 1.0
Name: ngpy
Version: 0.1
Summary: Web application for Monte Carlo simulation on nucleation and growth phenomena
Home-page: https://bitbucket.org/liuyxpp/ngpy
Author: Yi-Xin Liu
Author-email: liuyxpp@gmail.com
License: BSD
Description: 
        NGPy
        ~~~~
        
        NGPy is a web application that enable online performing and analyzing Monte-Carlo simulation on nucleation and growth phenomena. It can be also used as a web framework to develop your own web applications. NGPy is built on top of Flask.
        
        Quickstart
        ``````````
        
        1. Install
        ----------
        
        ::
        
            $ easy_install ngpy
        
        or
        
        ::
        
            $ tar -xvf ngpy-xxx.tar.gz
            $ cd ngpy-xxx
            $ python setup.py install
        
        * Make sure that the NoSQL database redis is installed in your system.
        * Other dependencies like ZODB, WTForm, Numpy, and Matplotlib should be
          taken care by easy_install. If not, try to install them mannually.
        
        2. Start ZODB server
        --------------------
        
        ::
        
            $ runzeo -a 0.0.0.0:<ZEOPORT> -f /path/to/your/data.fs
        
        * <ZEOPORT> must be an available port number, e.g. 1234
        
        3. Start redis server
        ---------------------
        
        ::
        
            $ redis-server [/path/to/redis.conf]
        
        4. Start the task queue daemon
        ------------------------------
        
        ::
        
            $ simd
        
        5. Start ngpy
        -------------
        
        ::
        
            $ run-ngpy
        
        The ngpy website should be now served at http://localhost:5000.
        You can visit it use any browser (Chrome, Firefox, IE, etc.) via
        http://localhost:5000
        if you are a local visitor, or
        http://IP.of.NGPy.run:5000
        if you visit remotely.
        
        Links
        `````
        
        * `Website <http://liuyxpp.bitbucket.org>`_
        * `Development version <http://bitbucket.org/liuyxpp/ngpy/>`_
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
