autosweep-preprocessing 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- autosweep_preprocessing-0.1.1/LICENSE +21 -0
- autosweep_preprocessing-0.1.1/PKG-INFO +188 -0
- autosweep_preprocessing-0.1.1/README.md +164 -0
- autosweep_preprocessing-0.1.1/pyproject.toml +39 -0
- autosweep_preprocessing-0.1.1/setup.cfg +4 -0
- autosweep_preprocessing-0.1.1/src/autosweep_preprocessing/__init__.py +3 -0
- autosweep_preprocessing-0.1.1/src/autosweep_preprocessing/core.py +871 -0
- autosweep_preprocessing-0.1.1/src/autosweep_preprocessing.egg-info/PKG-INFO +188 -0
- autosweep_preprocessing-0.1.1/src/autosweep_preprocessing.egg-info/SOURCES.txt +10 -0
- autosweep_preprocessing-0.1.1/src/autosweep_preprocessing.egg-info/dependency_links.txt +1 -0
- autosweep_preprocessing-0.1.1/src/autosweep_preprocessing.egg-info/requires.txt +4 -0
- autosweep_preprocessing-0.1.1/src/autosweep_preprocessing.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: autosweep-preprocessing
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Flexible tabular data preprocessing utility with a single AutoSweep API
|
|
5
|
+
Author: Harsh Kakadiya
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/harsh-kakadiya1/Autosweep
|
|
8
|
+
Project-URL: Repository, https://github.com/harsh-kakadiya1/Autosweep
|
|
9
|
+
Project-URL: Issues, https://github.com/harsh-kakadiya1/Autosweep/issues
|
|
10
|
+
Keywords: preprocessing,machine-learning,feature-engineering,data-cleaning
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Intended Audience :: Science/Research
|
|
15
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
16
|
+
Requires-Python: >=3.9
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
License-File: LICENSE
|
|
19
|
+
Requires-Dist: pandas>=1.5
|
|
20
|
+
Requires-Dist: numpy>=1.23
|
|
21
|
+
Requires-Dist: scikit-learn>=1.2
|
|
22
|
+
Requires-Dist: openpyxl>=3.1
|
|
23
|
+
Dynamic: license-file
|
|
24
|
+
|
|
25
|
+
# autosweep-preprocessing
|
|
26
|
+
|
|
27
|
+
A lightweight preprocessing library built around a single flexible API: `AutoSweep`.
|
|
28
|
+
|
|
29
|
+
## Usage
|
|
30
|
+
|
|
31
|
+
```python
|
|
32
|
+
from autosweep_preprocessing import AutoSweep
|
|
33
|
+
|
|
34
|
+
result = AutoSweep(
|
|
35
|
+
file_path="data.csv",
|
|
36
|
+
target_column="target",
|
|
37
|
+
encode_categorical="onehot",
|
|
38
|
+
remove_correlated=True,
|
|
39
|
+
structured_output=True,
|
|
40
|
+
)
|
|
41
|
+
|
|
42
|
+
X = result["X"]
|
|
43
|
+
y = result["y"]
|
|
44
|
+
info = result["info"]
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Function
|
|
48
|
+
|
|
49
|
+
`AutoSweep` supports:
|
|
50
|
+
|
|
51
|
+
- CSV/Excel loading
|
|
52
|
+
- Missing value handling and imputation
|
|
53
|
+
- Numeric scaling (`standard`, `minmax`, `robust`)
|
|
54
|
+
- Categorical encoding (`onehot`, `ordinal`, `label`)
|
|
55
|
+
- Optional datetime feature extraction
|
|
56
|
+
- Optional outlier handling (`iqr`, `zscore`)
|
|
57
|
+
- Optional correlation and low-variance filtering
|
|
58
|
+
- Structured output for pipeline diagnostics
|
|
59
|
+
|
|
60
|
+
## AutoSweep Arguments Guide
|
|
61
|
+
|
|
62
|
+
### Required / Core
|
|
63
|
+
|
|
64
|
+
- `file_path` (required)
|
|
65
|
+
- What it does: Path to input dataset (`.csv` or Excel file).
|
|
66
|
+
- Use case: Point to your raw training file before preprocessing.
|
|
67
|
+
- Example: `file_path="data/train.csv"`
|
|
68
|
+
|
|
69
|
+
- `target_column` (default: `None`)
|
|
70
|
+
- What it does: Separates target variable from features and returns it as `y`.
|
|
71
|
+
- Use case: Set this when you want to train/evaluate models after preprocessing.
|
|
72
|
+
- Example: `target_column="price"`
|
|
73
|
+
|
|
74
|
+
### Column cleaning
|
|
75
|
+
|
|
76
|
+
- `drop_columns` (default: `None`)
|
|
77
|
+
- What it does: Drops specific columns by name.
|
|
78
|
+
- Use case: Remove IDs, leakage columns, or metadata fields.
|
|
79
|
+
- Example: `drop_columns=["id", "created_at"]`
|
|
80
|
+
|
|
81
|
+
- `drop_threshold` (default: `1.0`)
|
|
82
|
+
- What it does: Drops columns whose missing-value fraction is greater than this threshold.
|
|
83
|
+
- Use case: Use `0.4`/`0.5` to remove heavily incomplete columns.
|
|
84
|
+
- Example: `drop_threshold=0.5`
|
|
85
|
+
|
|
86
|
+
### Missing values
|
|
87
|
+
|
|
88
|
+
- `impute_strategy_num` (default: `'mean'`)
|
|
89
|
+
- What it does: Numeric imputation strategy.
|
|
90
|
+
- Allowed: `'mean'`, `'median'`, `'most_frequent'`, `'constant'`, `'knn'`, `'mode'`.
|
|
91
|
+
- Use case: Use `'median'` for skewed numeric data, `'knn'` for richer local patterns.
|
|
92
|
+
- Example: `impute_strategy_num="median"`
|
|
93
|
+
|
|
94
|
+
- `impute_strategy_cat` (default: `'most_frequent'`)
|
|
95
|
+
- What it does: Categorical imputation strategy.
|
|
96
|
+
- Allowed: any `SimpleImputer` categorical strategy (commonly `'most_frequent'`, `'constant'`).
|
|
97
|
+
- Use case: Use `'most_frequent'` for stable categories.
|
|
98
|
+
- Example: `impute_strategy_cat="most_frequent"`
|
|
99
|
+
|
|
100
|
+
### Scaling and encoding
|
|
101
|
+
|
|
102
|
+
- `scaler` (default: `'standard'`)
|
|
103
|
+
- What it does: Scales numeric features.
|
|
104
|
+
- Allowed: `'standard'`, `'minmax'`, `'robust'`, or any other value for passthrough.
|
|
105
|
+
- Use case: Use `'robust'` when outliers are present.
|
|
106
|
+
- Example: `scaler="robust"`
|
|
107
|
+
|
|
108
|
+
- `encode_categorical` (default: `None`)
|
|
109
|
+
- What it does: Encodes categorical columns.
|
|
110
|
+
- Allowed: `None`, `'none'`, `'passthrough'`, `'onehot'`, `'ordinal'`, `'label'`.
|
|
111
|
+
- Use case: Use `'onehot'` for linear/tree models; `'label'` for compact numeric conversion.
|
|
112
|
+
- Example: `encode_categorical="onehot"`
|
|
113
|
+
|
|
114
|
+
### Feature selection
|
|
115
|
+
|
|
116
|
+
- `remove_low_variance` (default: `False`)
|
|
117
|
+
- What it does: Removes low-variance numeric features after preprocessing.
|
|
118
|
+
- Use case: Enable when many near-constant numeric features exist.
|
|
119
|
+
- Example: `remove_low_variance=True`
|
|
120
|
+
|
|
121
|
+
- `variance_thresh` (default: `0.0`)
|
|
122
|
+
- What it does: Variance cutoff used by low-variance filtering.
|
|
123
|
+
- Use case: Increase (e.g., `0.01`) to remove weak/noisy features.
|
|
124
|
+
- Example: `variance_thresh=0.01`
|
|
125
|
+
|
|
126
|
+
- `remove_correlated` (default: `False`)
|
|
127
|
+
- What it does: Drops highly correlated numeric features.
|
|
128
|
+
- Use case: Reduce multicollinearity and redundant columns.
|
|
129
|
+
- Example: `remove_correlated=True`
|
|
130
|
+
|
|
131
|
+
- `corr_threshold` (default: `0.95`)
|
|
132
|
+
- What it does: Absolute correlation threshold for dropping features.
|
|
133
|
+
- Use case: Use `0.85-0.95` depending on how aggressively you want feature pruning.
|
|
134
|
+
- Example: `corr_threshold=0.9`
|
|
135
|
+
|
|
136
|
+
### Outlier handling
|
|
137
|
+
|
|
138
|
+
- `outlier_method` (default: `None`)
|
|
139
|
+
- What it does: Enables outlier detection.
|
|
140
|
+
- Allowed: `None`, `'iqr'`, `'zscore'` (also `'z-score'`, `'z_score'`).
|
|
141
|
+
- Use case: Use `'iqr'` for non-normal data; `'zscore'` for roughly normal distributions.
|
|
142
|
+
- Example: `outlier_method="iqr"`
|
|
143
|
+
|
|
144
|
+
- `outlier_threshold` (default: `1.5`)
|
|
145
|
+
- What it does: Threshold used by outlier method.
|
|
146
|
+
- Use case: Increase to keep more rows, decrease to be stricter.
|
|
147
|
+
- Example: `outlier_threshold=3.0` (common for z-score)
|
|
148
|
+
|
|
149
|
+
- `cap_outliers` (default: `False`)
|
|
150
|
+
- What it does: Caps outliers to bounds instead of dropping rows.
|
|
151
|
+
- Use case: Set `True` when you want to preserve dataset size.
|
|
152
|
+
- Example: `cap_outliers=True`
|
|
153
|
+
|
|
154
|
+
### Datetime features
|
|
155
|
+
|
|
156
|
+
- `extract_datetime` (default: `False`)
|
|
157
|
+
- What it does: Parses datetime-like columns and extracts year/month/day/weekday/hour.
|
|
158
|
+
- Use case: Enable when date fields carry predictive signal.
|
|
159
|
+
- Example: `extract_datetime=True`
|
|
160
|
+
|
|
161
|
+
- `drop_datetime_original` (default: `False`)
|
|
162
|
+
- What it does: Drops original datetime columns after extraction.
|
|
163
|
+
- Use case: Keep only engineered datetime parts to simplify model input.
|
|
164
|
+
- Example: `drop_datetime_original=True`
|
|
165
|
+
|
|
166
|
+
### Target encoding and output format
|
|
167
|
+
|
|
168
|
+
- `target_encode` (default: `False`)
|
|
169
|
+
- What it does: Applies mean target encoding to categorical features.
|
|
170
|
+
- Use case: Helpful for high-cardinality categorical variables.
|
|
171
|
+
- Important: Requires `target_column`; avoid leakage by fitting only on training data in production workflows.
|
|
172
|
+
- Example: `target_encode=True`
|
|
173
|
+
|
|
174
|
+
- `structured_output` (default: `True`)
|
|
175
|
+
- What it does: Controls return format.
|
|
176
|
+
- If `True`: returns `{ 'X', 'y', 'feature_names', 'info' }`.
|
|
177
|
+
- If `False`: returns tuple(s) (`X, y, feature_names` or `X, feature_names`).
|
|
178
|
+
- Use case: Keep `True` for debugging and pipeline introspection.
|
|
179
|
+
|
|
180
|
+
- `verbose` (default: `True`)
|
|
181
|
+
- What it does: Prints detailed preprocessing diagnostics.
|
|
182
|
+
- Use case: Set `False` for cleaner logs in training pipelines.
|
|
183
|
+
- Example: `verbose=False`
|
|
184
|
+
|
|
185
|
+
## Notes
|
|
186
|
+
|
|
187
|
+
- If you use Excel input, keep `openpyxl` installed.
|
|
188
|
+
- If `target_encode=True`, provide a valid `target_column`.
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
# autosweep-preprocessing
|
|
2
|
+
|
|
3
|
+
A lightweight preprocessing library built around a single flexible API: `AutoSweep`.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```python
|
|
8
|
+
from autosweep_preprocessing import AutoSweep
|
|
9
|
+
|
|
10
|
+
result = AutoSweep(
|
|
11
|
+
file_path="data.csv",
|
|
12
|
+
target_column="target",
|
|
13
|
+
encode_categorical="onehot",
|
|
14
|
+
remove_correlated=True,
|
|
15
|
+
structured_output=True,
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
X = result["X"]
|
|
19
|
+
y = result["y"]
|
|
20
|
+
info = result["info"]
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Function
|
|
24
|
+
|
|
25
|
+
`AutoSweep` supports:
|
|
26
|
+
|
|
27
|
+
- CSV/Excel loading
|
|
28
|
+
- Missing value handling and imputation
|
|
29
|
+
- Numeric scaling (`standard`, `minmax`, `robust`)
|
|
30
|
+
- Categorical encoding (`onehot`, `ordinal`, `label`)
|
|
31
|
+
- Optional datetime feature extraction
|
|
32
|
+
- Optional outlier handling (`iqr`, `zscore`)
|
|
33
|
+
- Optional correlation and low-variance filtering
|
|
34
|
+
- Structured output for pipeline diagnostics
|
|
35
|
+
|
|
36
|
+
## AutoSweep Arguments Guide
|
|
37
|
+
|
|
38
|
+
### Required / Core
|
|
39
|
+
|
|
40
|
+
- `file_path` (required)
|
|
41
|
+
- What it does: Path to input dataset (`.csv` or Excel file).
|
|
42
|
+
- Use case: Point to your raw training file before preprocessing.
|
|
43
|
+
- Example: `file_path="data/train.csv"`
|
|
44
|
+
|
|
45
|
+
- `target_column` (default: `None`)
|
|
46
|
+
- What it does: Separates target variable from features and returns it as `y`.
|
|
47
|
+
- Use case: Set this when you want to train/evaluate models after preprocessing.
|
|
48
|
+
- Example: `target_column="price"`
|
|
49
|
+
|
|
50
|
+
### Column cleaning
|
|
51
|
+
|
|
52
|
+
- `drop_columns` (default: `None`)
|
|
53
|
+
- What it does: Drops specific columns by name.
|
|
54
|
+
- Use case: Remove IDs, leakage columns, or metadata fields.
|
|
55
|
+
- Example: `drop_columns=["id", "created_at"]`
|
|
56
|
+
|
|
57
|
+
- `drop_threshold` (default: `1.0`)
|
|
58
|
+
- What it does: Drops columns whose missing-value fraction is greater than this threshold.
|
|
59
|
+
- Use case: Use `0.4`/`0.5` to remove heavily incomplete columns.
|
|
60
|
+
- Example: `drop_threshold=0.5`
|
|
61
|
+
|
|
62
|
+
### Missing values
|
|
63
|
+
|
|
64
|
+
- `impute_strategy_num` (default: `'mean'`)
|
|
65
|
+
- What it does: Numeric imputation strategy.
|
|
66
|
+
- Allowed: `'mean'`, `'median'`, `'most_frequent'`, `'constant'`, `'knn'`, `'mode'`.
|
|
67
|
+
- Use case: Use `'median'` for skewed numeric data, `'knn'` for richer local patterns.
|
|
68
|
+
- Example: `impute_strategy_num="median"`
|
|
69
|
+
|
|
70
|
+
- `impute_strategy_cat` (default: `'most_frequent'`)
|
|
71
|
+
- What it does: Categorical imputation strategy.
|
|
72
|
+
- Allowed: any `SimpleImputer` categorical strategy (commonly `'most_frequent'`, `'constant'`).
|
|
73
|
+
- Use case: Use `'most_frequent'` for stable categories.
|
|
74
|
+
- Example: `impute_strategy_cat="most_frequent"`
|
|
75
|
+
|
|
76
|
+
### Scaling and encoding
|
|
77
|
+
|
|
78
|
+
- `scaler` (default: `'standard'`)
|
|
79
|
+
- What it does: Scales numeric features.
|
|
80
|
+
- Allowed: `'standard'`, `'minmax'`, `'robust'`, or any other value for passthrough.
|
|
81
|
+
- Use case: Use `'robust'` when outliers are present.
|
|
82
|
+
- Example: `scaler="robust"`
|
|
83
|
+
|
|
84
|
+
- `encode_categorical` (default: `None`)
|
|
85
|
+
- What it does: Encodes categorical columns.
|
|
86
|
+
- Allowed: `None`, `'none'`, `'passthrough'`, `'onehot'`, `'ordinal'`, `'label'`.
|
|
87
|
+
- Use case: Use `'onehot'` for linear/tree models; `'label'` for compact numeric conversion.
|
|
88
|
+
- Example: `encode_categorical="onehot"`
|
|
89
|
+
|
|
90
|
+
### Feature selection
|
|
91
|
+
|
|
92
|
+
- `remove_low_variance` (default: `False`)
|
|
93
|
+
- What it does: Removes low-variance numeric features after preprocessing.
|
|
94
|
+
- Use case: Enable when many near-constant numeric features exist.
|
|
95
|
+
- Example: `remove_low_variance=True`
|
|
96
|
+
|
|
97
|
+
- `variance_thresh` (default: `0.0`)
|
|
98
|
+
- What it does: Variance cutoff used by low-variance filtering.
|
|
99
|
+
- Use case: Increase (e.g., `0.01`) to remove weak/noisy features.
|
|
100
|
+
- Example: `variance_thresh=0.01`
|
|
101
|
+
|
|
102
|
+
- `remove_correlated` (default: `False`)
|
|
103
|
+
- What it does: Drops highly correlated numeric features.
|
|
104
|
+
- Use case: Reduce multicollinearity and redundant columns.
|
|
105
|
+
- Example: `remove_correlated=True`
|
|
106
|
+
|
|
107
|
+
- `corr_threshold` (default: `0.95`)
|
|
108
|
+
- What it does: Absolute correlation threshold for dropping features.
|
|
109
|
+
- Use case: Use `0.85-0.95` depending on how aggressively you want feature pruning.
|
|
110
|
+
- Example: `corr_threshold=0.9`
|
|
111
|
+
|
|
112
|
+
### Outlier handling
|
|
113
|
+
|
|
114
|
+
- `outlier_method` (default: `None`)
|
|
115
|
+
- What it does: Enables outlier detection.
|
|
116
|
+
- Allowed: `None`, `'iqr'`, `'zscore'` (also `'z-score'`, `'z_score'`).
|
|
117
|
+
- Use case: Use `'iqr'` for non-normal data; `'zscore'` for roughly normal distributions.
|
|
118
|
+
- Example: `outlier_method="iqr"`
|
|
119
|
+
|
|
120
|
+
- `outlier_threshold` (default: `1.5`)
|
|
121
|
+
- What it does: Threshold used by outlier method.
|
|
122
|
+
- Use case: Increase to keep more rows, decrease to be stricter.
|
|
123
|
+
- Example: `outlier_threshold=3.0` (common for z-score)
|
|
124
|
+
|
|
125
|
+
- `cap_outliers` (default: `False`)
|
|
126
|
+
- What it does: Caps outliers to bounds instead of dropping rows.
|
|
127
|
+
- Use case: Set `True` when you want to preserve dataset size.
|
|
128
|
+
- Example: `cap_outliers=True`
|
|
129
|
+
|
|
130
|
+
### Datetime features
|
|
131
|
+
|
|
132
|
+
- `extract_datetime` (default: `False`)
|
|
133
|
+
- What it does: Parses datetime-like columns and extracts year/month/day/weekday/hour.
|
|
134
|
+
- Use case: Enable when date fields carry predictive signal.
|
|
135
|
+
- Example: `extract_datetime=True`
|
|
136
|
+
|
|
137
|
+
- `drop_datetime_original` (default: `False`)
|
|
138
|
+
- What it does: Drops original datetime columns after extraction.
|
|
139
|
+
- Use case: Keep only engineered datetime parts to simplify model input.
|
|
140
|
+
- Example: `drop_datetime_original=True`
|
|
141
|
+
|
|
142
|
+
### Target encoding and output format
|
|
143
|
+
|
|
144
|
+
- `target_encode` (default: `False`)
|
|
145
|
+
- What it does: Applies mean target encoding to categorical features.
|
|
146
|
+
- Use case: Helpful for high-cardinality categorical variables.
|
|
147
|
+
- Important: Requires `target_column`; avoid leakage by fitting only on training data in production workflows.
|
|
148
|
+
- Example: `target_encode=True`
|
|
149
|
+
|
|
150
|
+
- `structured_output` (default: `True`)
|
|
151
|
+
- What it does: Controls return format.
|
|
152
|
+
- If `True`: returns `{ 'X', 'y', 'feature_names', 'info' }`.
|
|
153
|
+
- If `False`: returns tuple(s) (`X, y, feature_names` or `X, feature_names`).
|
|
154
|
+
- Use case: Keep `True` for debugging and pipeline introspection.
|
|
155
|
+
|
|
156
|
+
- `verbose` (default: `True`)
|
|
157
|
+
- What it does: Prints detailed preprocessing diagnostics.
|
|
158
|
+
- Use case: Set `False` for cleaner logs in training pipelines.
|
|
159
|
+
- Example: `verbose=False`
|
|
160
|
+
|
|
161
|
+
## Notes
|
|
162
|
+
|
|
163
|
+
- If you use Excel input, keep `openpyxl` installed.
|
|
164
|
+
- If `target_encode=True`, provide a valid `target_column`.
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "autosweep-preprocessing"
|
|
7
|
+
version = "0.1.1"
|
|
8
|
+
description = "Flexible tabular data preprocessing utility with a single AutoSweep API"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Harsh Kakadiya" }
|
|
14
|
+
]
|
|
15
|
+
keywords = ["preprocessing", "machine-learning", "feature-engineering", "data-cleaning"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
19
|
+
"Operating System :: OS Independent",
|
|
20
|
+
"Intended Audience :: Science/Research",
|
|
21
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence"
|
|
22
|
+
]
|
|
23
|
+
dependencies = [
|
|
24
|
+
"pandas>=1.5",
|
|
25
|
+
"numpy>=1.23",
|
|
26
|
+
"scikit-learn>=1.2",
|
|
27
|
+
"openpyxl>=3.1"
|
|
28
|
+
]
|
|
29
|
+
|
|
30
|
+
[project.urls]
|
|
31
|
+
Homepage = "https://github.com/harsh-kakadiya1/Autosweep"
|
|
32
|
+
Repository = "https://github.com/harsh-kakadiya1/Autosweep"
|
|
33
|
+
Issues = "https://github.com/harsh-kakadiya1/Autosweep/issues"
|
|
34
|
+
|
|
35
|
+
[tool.setuptools]
|
|
36
|
+
package-dir = {"" = "src"}
|
|
37
|
+
|
|
38
|
+
[tool.setuptools.packages.find]
|
|
39
|
+
where = ["src"]
|