Skip to content

Commit 0b465b9

Browse files
Refactored: all __init__.py for better accessibilty
1 parent aecc64d commit 0b465b9

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ pocket_ml/
8383

8484
## Documentation
8585

86-
For detailed documentation and examples, visit our [documentation page](https://pypi.org/project/pocket-ml/). (Note: The provided link points to version 0.1.1, ensure documentation matches the installed version).
86+
For detailed documentation and examples, visit our [documentation page](https://pypi.org/project/pocket-ml/). (Note: The provided link points to version 0.1.2, ensure documentation matches the installed version).
8787

8888
## Contributing
8989

pocket_ml/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@
44
"""
55

66
from .algorithms.classification.classifier import Classifier
7-
from .preprocessing.data_preprocessor import DataPreprocessor
7+
from .preprocessing.preprocessor import DataPreprocessor
88
from .visualization.visualizer import Visualizer
99

1010
__version__ = '0.1.2'
11-
__author__ = 'Raghul'
1211
__all__ = ['Classifier', 'DataPreprocessor', 'Visualizer']

pocket_ml/algorithms/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
This module provides various machine learning algorithms.
44
"""
55

6-
from .classification.classifier import Classifier
6+
from .classification import Classifier
77

88
__all__ = ['Classifier']
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from .classifier import Classifier

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
with open("README.md", "r") as f:
55
description = f.read()
6+
67
setup(
78
name="pocket_ml", # You might need to change this if the name is taken
89
version="0.1.2",

0 commit comments

Comments
 (0)