Metadata-Version: 1.1
Name: propobject
Version: 0.1.0
Summary: propobject: Low level object to inherit from
Home-page: https://github.com/MickaelRigault/propobject/
Author: Mickael Rigault
Author-email: mrigault@physik.hu-berlin.de
License: Apache 2.0
Download-URL: https://github.com/MickaelRigault/propobject/tarball/0.1
Description:     Structure to handle the
            _proprerties, _side_properties, _derived_properties
            tricks.
        
            A class inheriting from BaseObject could have the following
            global-class variables:
        
            ```
            PROPERTIES         = ["a","b"]
            SIDE_PROPERTIES    = ["t"]
            DERIVED_PROPERTIES = ["whynot"]
            ```
            if so, object created from this class or any inheriting class
            could have access to the self._properties["a"], self._properties["b"]
            self._side_properties["t"] or self._derived_properties["whynot"]
            parameters.
        
            BaseObject have a basic .copy() method.
        
Platform: UNKNOWN
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Topic :: Scientific/Engineering :: Astronomy
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
