distclassipy 0.1.5__py3-none-any.whl → 0.2.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.
distclassipy/__init__.py CHANGED
@@ -22,7 +22,17 @@ You should have received a copy of the GNU General Public License
22
22
  along with this program. If not, see <https://www.gnu.org/licenses/>.
23
23
  """
24
24
 
25
- from .classifier import DistanceMetricClassifier # noqa
26
- from .distances import Distance # noqa
25
+ from .classifier import (
26
+ DistanceMetricClassifier,
27
+ EnsembleDistanceClassifier,
28
+ )
29
+ from .distances import Distance, _ALL_METRICS
27
30
 
28
- __version__ = "0.1.5"
31
+ __version__ = "0.2.0"
32
+
33
+ __all__ = [
34
+ "DistanceMetricClassifier",
35
+ "EnsembleDistanceClassifier",
36
+ "Distance",
37
+ "_ALL_METRICS",
38
+ ]