diff --git a/beautifyPlot.egg-info/PKG-INFO b/beautifyPlot.egg-info/PKG-INFO index 4b0b9b7..4af082b 100644 --- a/beautifyPlot.egg-info/PKG-INFO +++ b/beautifyPlot.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: beautifyPlot -Version: 0.0.1 +Version: 0.1 Summary: A matplotlib wrapper to make plotting easier. Author-email: "Keerthi Vasan G.C." Project-URL: Homepage, https://github.com/kvgc/beautifyPlot @@ -44,7 +44,7 @@ plt.tight_layout() Using beautifyPlot ```python -from beautifyPlot import beautifyPlot +from beautifyPlot.bplt import beautifyPlot import numpy as np x = np.arange(0,100,1) y = x**3 diff --git a/dist/beautifyPlot-0.0.1-py3-none-any.whl b/dist/beautifyPlot-0.0.1-py3-none-any.whl deleted file mode 100644 index fd22b41..0000000 Binary files a/dist/beautifyPlot-0.0.1-py3-none-any.whl and /dev/null differ diff --git a/dist/beautifyPlot-0.0.1.tar.gz b/dist/beautifyPlot-0.0.1.tar.gz deleted file mode 100644 index b3c5379..0000000 Binary files a/dist/beautifyPlot-0.0.1.tar.gz and /dev/null differ diff --git a/dist/beautifyPlot-0.1-py3-none-any.whl b/dist/beautifyPlot-0.1-py3-none-any.whl new file mode 100644 index 0000000..5085071 Binary files /dev/null and b/dist/beautifyPlot-0.1-py3-none-any.whl differ diff --git a/dist/beautifyPlot-0.1.tar.gz b/dist/beautifyPlot-0.1.tar.gz new file mode 100644 index 0000000..5a09afc Binary files /dev/null and b/dist/beautifyPlot-0.1.tar.gz differ diff --git a/pyproject.toml b/pyproject.toml index 868866c..7422345 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "beautifyPlot" -version = "0.0.1" +version = "0.1" authors = [ { name="Keerthi Vasan G.C.", email="kvch@ucdavis.edu" }, ]