Skip to content

Commit

Permalink
removed build dist folders
Browse files Browse the repository at this point in the history
  • Loading branch information
AutoViML committed Dec 10, 2020
1 parent e2d05ca commit 7d7b446
Show file tree
Hide file tree
Showing 14 changed files with 1,948 additions and 3,059 deletions.
28 changes: 14 additions & 14 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Contributing

We welcome contributions from anyone beginner or advanced. Please before working on some feature

* search through the past issues, your concern may have been raised by others in the past. Check through
closed issues as well.
* if there is no open issue for your feature request please open one up to coordinate all collaborators
* write your feature
* submit a pull request on this repo with:
* a brief description
* **detail of the expected change(s) in behaviour**
* how to test it (if it's not obvious)

Ask someone to test it.
# Contributing

We welcome contributions from anyone beginner or advanced. Please before working on some feature

* search through the past issues, your concern may have been raised by others in the past. Check through
closed issues as well.
* if there is no open issue for your feature request please open one up to coordinate all collaborators
* write your feature
* submit a pull request on this repo with:
* a brief description
* **detail of the expected change(s) in behaviour**
* how to test it (if it's not obvious)

Ask someone to test it.
402 changes: 201 additions & 201 deletions LICENSE

Large diffs are not rendered by default.

318 changes: 159 additions & 159 deletions README.md

Large diffs are not rendered by default.

22 changes: 0 additions & 22 deletions build/lib/featurewiz/__init__.py

This file was deleted.

10 changes: 0 additions & 10 deletions build/lib/featurewiz/__version__.py

This file was deleted.

1,079 changes: 0 additions & 1,079 deletions build/lib/featurewiz/featurewiz.py

This file was deleted.

Binary file removed dist/featurewiz-0.0.6-py3-none-any.whl
Binary file not shown.
Binary file removed dist/featurewiz-0.0.6.tar.gz
Binary file not shown.
342 changes: 171 additions & 171 deletions featurewiz.egg-info/PKG-INFO

Large diffs are not rendered by default.

46 changes: 23 additions & 23 deletions featurewiz/__init__.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
# -*- coding: utf-8 -*-
################################################################################
# featurewiz - fast feature selection using one line of code
# Python v3.6+
# Created by Ram Seshadri
# Licensed under Apache License v2
################################################################################
# Version
from .__version__ import __version__
from .featurewiz import featurewiz, convert_all_object_columns_to_numeric
from .featurewiz import split_one_field_into_many, add_aggregate_primitive_features
from .featurewiz import create_time_series_features
if __name__ == "__main__":
version_number = __version__
print("""Running featurewiz version: %s. Call by using:
features = featurewiz(dataname, target, corr_limit=0.70,
verbose=2, sep=',', header=0)""" %version_number)
else:
version_number = __version__
print("""Imported featurewiz version: %s. Call by using:
features = featurewiz(dataname, target, corr_limit=0.70,
verbose=2, sep=',', header=0)""" %version_number)
################################################################################
# -*- coding: utf-8 -*-
################################################################################
# featurewiz - fast feature selection using one line of code
# Python v3.6+
# Created by Ram Seshadri
# Licensed under Apache License v2
################################################################################
# Version
from .__version__ import __version__
from .featurewiz import featurewiz, convert_all_object_columns_to_numeric
from .featurewiz import split_one_field_into_many, add_aggregate_primitive_features
from .featurewiz import create_time_series_features
if __name__ == "__main__":
version_number = __version__
print("""Running featurewiz version: %s. Call by using:
features = featurewiz(dataname, target, corr_limit=0.70,
verbose=2, sep=',', header=0)""" %version_number)
else:
version_number = __version__
print("""Imported featurewiz version: %s. Call by using:
features = featurewiz(dataname, target, corr_limit=0.70,
verbose=2, sep=',', header=0)""" %version_number)
################################################################################
20 changes: 10 additions & 10 deletions featurewiz/__version__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# -*- coding: utf-8 -*-
"""Specifies the version of the FeatureWiz package."""

__title__ = "featurewiz"
__author__ = "Ram Seshadri"
__description__ = "Fast Feature Selection for any data set, any size"
__url__ = "https://github.com/Auto_ViML/featurewiz.git"
__version__ = "0.0.7"
__license__ = "Apache License 2.0"
__copyright__ = "2020 Google"
# -*- coding: utf-8 -*-
"""Specifies the version of the FeatureWiz package."""

__title__ = "featurewiz"
__author__ = "Ram Seshadri"
__description__ = "Fast Feature Selection for any data set, any size"
__url__ = "https://github.com/Auto_ViML/featurewiz.git"
__version__ = "0.0.7"
__license__ = "Apache License 2.0"
__copyright__ = "2020 Google"
Loading

0 comments on commit 7d7b446

Please sign in to comment.