diff --git a/setup.py b/setup.py index 15798179..8d9c674b 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="mljar-supervised", - version="0.7.1", + version="0.7.2", description="Automates Machine Learning Pipeline with Feature Engineering and Hyper-Parameters Tuning", long_description=long_description, long_description_content_type="text/markdown", @@ -24,6 +24,7 @@ classifiers=[ "Programming Language :: Python", "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", ], keywords=[ "automl", @@ -33,5 +34,8 @@ "xgboost", "lightgbm", "catboost", + "mljar", + "data science", + "feature engineering" ], ) diff --git a/supervised/__init__.py b/supervised/__init__.py index 4abe0251..299aad75 100644 --- a/supervised/__init__.py +++ b/supervised/__init__.py @@ -1,3 +1,3 @@ -__version__ = "0.7.1" +__version__ = "0.7.2" from supervised.automl import AutoML