Metadata-Version: 2.1
Name: module_exports
Version: 1.0.0
Summary: One decrator to export them all :)
Home-page: https://github.com/ramon93i7/module_exports
Author: Roman Shemyakin
Author-email: ramon93i7@gmail.com
License: UNKNOWN
Description: # module-exports
        
        
        Single decorator that injects `__name__` of object to export into `__all__`.
        
        
        ```python
        from module_exports import export_from_module
        
        
        @export_from_module
        def some_public_function():
          return 4
        
        
        #  __all__ == ['some_public_function']
        
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
