Metadata-Version: 1.1
Name: robotlibcore-temp
Version: 1.0.2
Summary: Tools to ease creating larger test libraries for Robot Framework using Python.
Home-page: http://robotframework.org
Author: Pekka Klärck
Author-email: peke@eliga.fi
License: Apache License 2.0
Download-URL: https://pypi.python.org/pypi/robotframework
Description: Python Library Core
        ===================
        
        Tools to ease creating larger test libraries for `Robot Framework`_ using
        Python.
        
        Code is stable and version 1.0 is already used by SeleniumLibrary_.
        Better documentation and packaging still to do.
        
        Example
        -------
        
        .. sourcecode:: python
        
            """Main library."""
        
            from robotlibcore import HybridCore
        
            from mystuff import Library1, Library2
        
        
            class MyLibrary(HybridCore):
                """General library documentation."""
        
                def __init__(self):
                    libraries = [Library1(), Library2()]
                    HybridCore.__init__(self, libraries)
        
        
        .. sourcecode:: python
        
            """Library components."""
        
            from robotlibcore import keyword
        
        
            class Library1(object):
        
                @keyword
                def example(self):
                    """Keyword documentation."""
                    pass
        
                @keyword
                def another_example(self, arg1, arg2='default'):
                    pass
        
                def not_keyword(self):
                    pass
        
        
            class Library2(object):
        
                @keyword('Custom name')
                def this_name_is_not_used(self):
                    pass
        
                @keyword(tags=['tag', 'another'])
                def tags(self):
                    pass
        
        
        .. _Robot Framework: http://robotframework.org
        .. _SeleniumLibrary: https://github.com/robotframework/SeleniumLibrary/
        
Keywords: robotframework automation libraries
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: Jython
Classifier: Programming Language :: Python :: Implementation :: IronPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Testing :: Acceptance
Classifier: Topic :: Software Development :: Testing :: BDD
Classifier: Framework :: Robot Framework
