syd 0.2.0__py3-none-any.whl → 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
syd/__init__.py CHANGED
@@ -1,7 +1,7 @@
1
1
  from typing import Callable, Optional
2
2
  from .viewer import Viewer
3
3
 
4
- __version__ = "0.2.0"
4
+ __version__ = "1.0.0"
5
5
 
6
6
 
7
7
  def make_viewer(plot_func: Optional[Callable] = None):
@@ -1,7 +1 @@
1
- """
2
- Syd Viewer Flask Deployment
3
1
 
4
- This module provides tools to deploy Syd Viewer objects as Flask web applications.
5
- """
6
-
7
- from .deployer import deploy_flask, FlaskDeployer, FlaskLayoutConfig