Skip to content

Commit

Permalink
Fixed __init__ and migrated to setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
jfsantos committed Apr 30, 2015
1 parent d476ae6 commit 6749ccc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
8 changes: 4 additions & 4 deletions gmr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
Gaussian Mixture Models (GMMs) for clustering and regression in Python.
"""
from mvn import MVN, plot_error_ellipse
from gmm import GMM, plot_error_ellipses


__version__ = "1.1-git"

__all__ = ["GMM", "MVN", "plot_error_ellipse", "plot_error_ellipses"]
__all__ = ['gmm', 'mvn', 'utils']

from .mvn import MVN, plot_error_ellipse
from .gmm import GMM, plot_error_ellipses
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,12 @@
# Author: Alexander Fabisch <afabisch@googlemail.com>
# License: BSD 3 clause


from distutils.core import setup
import gmr

from setuptools import setup

def setup_package():
setup(
name="gmr",
version=gmr.__version__,
version="1.1-git",
author="Alexander Fabisch",
author_email="afabisch@googlemail.com",
url="https://github.com/AlexanderFabisch/gmr",
Expand Down

0 comments on commit 6749ccc

Please sign in to comment.