DataBrewery / cubes

[NOT MAINTAINED] Light-weight Python OLAP framework for multi-dimensional data analysis
http://cubes.databrewery.org
Other
1.49k stars 314 forks source link

Document extension entry points #417

Closed Stiivi closed 7 years ago

Stiivi commented 7 years ago

Document how to add entry_points into setup.py to advertise Cubes backends.

The setup.py of extension module should contain something like this:

entry_points = {
    'stores': ['mystore = mystore.store:MyStore'],
    'browsers': ['mybrowser = mystore.browser:MyBrowser'],
}

Example problem: #350

References:

Stiivi commented 7 years ago

Example of server entry_points configuration for the Flask slicer server.

Stiivi commented 7 years ago

Use description of PR #427 as a starting point for documentation.

Stiivi commented 7 years ago

See #394 and #430.

Stiivi commented 7 years ago

Closing this one, as the extension points mentioned in the original issue are obsolete.

Stiivi commented 7 years ago

Replaced by #434