Skip to content

Commit

Permalink
Updated structure
Browse files Browse the repository at this point in the history
  • Loading branch information
nityansuman committed Mar 7, 2024
1 parent 9b66b21 commit 7eb2035
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 39 deletions.
29 changes: 0 additions & 29 deletions .github/workflows/publish.yml

This file was deleted.

4 changes: 2 additions & 2 deletions AUTHORS.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Credits
Credits
---

# Maintaines
# Maintainer
- Kumar Nityan Suman \<<[email protected]>\>

# Inspired Work From
Expand Down
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
History
---

# 0.3.1 (2024-03-03)

- Minor cleanups

# 0.3.0 (2024-03-03)

- Fixed OneHotEncoder Bug
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ To use Lazy Predict in a project:

Example :

# Old Way
from lazypredict.Supervised import LazyClassifier
# New Way
from lazypredict import LazyClassifier

from sklearn.datasets import load_breast_cancer
from sklearn.model_selection import train_test_split

Expand Down Expand Up @@ -74,7 +78,11 @@ Example :

Example :

# Original Way
from lazypredict.Supervised import LazyRegressor
# Alternate Way
from lazypredict import LazyRegressor

from sklearn import datasets
from sklearn.utils import shuffle
import numpy as np
Expand Down
6 changes: 6 additions & 0 deletions lazypredict/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
# -*- coding: utf-8 -*-
from Supervised import LazyClassifier, LazyRegressor

__all__ = [
LazyClassifier,
LazyRegressor
]
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.0
current_version = 0.3.1
commit = True
tag = True

Expand Down
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
with open("HISTORY.md") as history_file:
history = history_file.read()

requirements = [requirement for requirement in open('requirements.txt')]
requirements = [requirement for requirement in open("requirements.txt")]

setup_requirements = [
"pytest-runner",
Expand All @@ -30,11 +30,11 @@
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -51,6 +51,6 @@
setup_requires=setup_requirements,
test_suite="tests",
url="https://github.com/nityansuman/lazypredict-nightly",
version='0.3.0',
version="0.3.1",
zip_safe=False
)

0 comments on commit 7eb2035

Please sign in to comment.