AutomatedCleaning 1.2__tar.gz → 1.4__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.
- {automatedcleaning-1.2 → automatedcleaning-1.4}/AutomatedCleaning.egg-info/PKG-INFO +1 -1
- {automatedcleaning-1.2 → automatedcleaning-1.4}/PKG-INFO +1 -1
- {automatedcleaning-1.2 → automatedcleaning-1.4}/setup.py +144 -144
- {automatedcleaning-1.2 → automatedcleaning-1.4}/AutomatedCleaning.egg-info/SOURCES.txt +0 -0
- {automatedcleaning-1.2 → automatedcleaning-1.4}/AutomatedCleaning.egg-info/dependency_links.txt +0 -0
- {automatedcleaning-1.2 → automatedcleaning-1.4}/AutomatedCleaning.egg-info/requires.txt +0 -0
- {automatedcleaning-1.2 → automatedcleaning-1.4}/AutomatedCleaning.egg-info/top_level.txt +0 -0
- {automatedcleaning-1.2 → automatedcleaning-1.4}/README.md +0 -0
- {automatedcleaning-1.2 → automatedcleaning-1.4}/automatedcleaning/__init__.py +0 -0
- {automatedcleaning-1.2 → automatedcleaning-1.4}/automatedcleaning/cleaning.py +0 -0
- {automatedcleaning-1.2 → automatedcleaning-1.4}/automatedcleaning/cleaning_update.py +0 -0
- {automatedcleaning-1.2 → automatedcleaning-1.4}/setup.cfg +0 -0
|
@@ -1,144 +1,144 @@
|
|
|
1
|
-
from setuptools import setup, find_packages
|
|
2
|
-
|
|
3
|
-
# Read README.md for the long description
|
|
4
|
-
with open("README.md", "r", encoding="utf-8") as fh:
|
|
5
|
-
long_description = fh.read()
|
|
6
|
-
|
|
7
|
-
setup(
|
|
8
|
-
name='AutomatedCleaning',
|
|
9
|
-
version='1.
|
|
10
|
-
packages=find_packages(),
|
|
11
|
-
install_requires=[
|
|
12
|
-
"absl-py==2.1.0",
|
|
13
|
-
"annotated-types==0.7.0",
|
|
14
|
-
"anthropic==0.49.0",
|
|
15
|
-
"anyio==4.8.0",
|
|
16
|
-
"astunparse==1.6.3",
|
|
17
|
-
"backports.tarfile==1.2.0",
|
|
18
|
-
"certifi==2025.1.31",
|
|
19
|
-
"charset-normalizer==3.4.1",
|
|
20
|
-
"click==8.1.8",
|
|
21
|
-
"colorama==0.4.6",
|
|
22
|
-
"contourpy==1.3.1",
|
|
23
|
-
"cycler==0.12.1",
|
|
24
|
-
"distro==1.9.0",
|
|
25
|
-
"docutils==0.21.2",
|
|
26
|
-
"et_xmlfile==2.0.0",
|
|
27
|
-
"filelock==3.17.0",
|
|
28
|
-
"flatbuffers==25.2.10",
|
|
29
|
-
"fonttools==4.55.2",
|
|
30
|
-
"fsspec==2025.3.0",
|
|
31
|
-
"fuzzywuzzy==0.18.0",
|
|
32
|
-
"gast==0.6.0",
|
|
33
|
-
"google-pasta==0.2.0",
|
|
34
|
-
"grpcio==1.70.0",
|
|
35
|
-
"h11==0.14.0",
|
|
36
|
-
"h5py==3.13.0",
|
|
37
|
-
"httpcore==1.0.7",
|
|
38
|
-
"httpx==0.28.1",
|
|
39
|
-
"huggingface-hub==0.29.2",
|
|
40
|
-
"idna==3.10",
|
|
41
|
-
"imbalanced-learn==0.13.0",
|
|
42
|
-
"imblearn==0.0",
|
|
43
|
-
"importlib_metadata==8.6.1",
|
|
44
|
-
"inexactsearch==1.0.2",
|
|
45
|
-
"jaraco.classes==3.4.0",
|
|
46
|
-
"jaraco.context==6.0.1",
|
|
47
|
-
"jaraco.functools==4.1.0",
|
|
48
|
-
"jinja2==3.1.6",
|
|
49
|
-
"jiter==0.9.0",
|
|
50
|
-
"joblib==1.4.2",
|
|
51
|
-
"jsonpatch==1.33",
|
|
52
|
-
"jsonpointer==3.0.0",
|
|
53
|
-
"kaleido==0.2.1",
|
|
54
|
-
"keras==3.9.0",
|
|
55
|
-
"keyring==25.6.0",
|
|
56
|
-
"kiwisolver==1.4.7",
|
|
57
|
-
"langchain-anthropic==0.3.10",
|
|
58
|
-
"langchain-core==0.3.45",
|
|
59
|
-
"langsmith==0.3.15",
|
|
60
|
-
"libclang==18.1.1",
|
|
61
|
-
"Markdown==3.7",
|
|
62
|
-
"markdown-it-py==3.0.0",
|
|
63
|
-
"markupsafe==3.0.2",
|
|
64
|
-
"matplotlib==3.9.3",
|
|
65
|
-
"mdurl==0.1.2",
|
|
66
|
-
"missingno==0.5.2",
|
|
67
|
-
"ml-dtypes==0.4.1",
|
|
68
|
-
"more-itertools==10.6.0",
|
|
69
|
-
"namex==0.0.8",
|
|
70
|
-
"narwhals==1.29.1",
|
|
71
|
-
"nh3==0.2.20",
|
|
72
|
-
"nltk==3.9.1",
|
|
73
|
-
"numpy==2.0.2",
|
|
74
|
-
"openpyxl==3.1.5",
|
|
75
|
-
"opt_einsum==3.4.0",
|
|
76
|
-
"optree==0.14.1",
|
|
77
|
-
"orjson==3.10.15",
|
|
78
|
-
"packaging==24.2",
|
|
79
|
-
"pandas==2.2.3",
|
|
80
|
-
"pillow==11.0.0",
|
|
81
|
-
"plotly==6.0.0",
|
|
82
|
-
"polars==1.23.0",
|
|
83
|
-
"protobuf==5.29.3",
|
|
84
|
-
"pyarrow==19.0.1",
|
|
85
|
-
"pydantic==2.10.6",
|
|
86
|
-
"pydantic_core==2.27.2",
|
|
87
|
-
"pyenchant==3.2.2",
|
|
88
|
-
"pyfiglet==1.0.2",
|
|
89
|
-
"pygments==2.19.1",
|
|
90
|
-
"pyparsing==3.2.0",
|
|
91
|
-
"pyspellchecker==0.8.1",
|
|
92
|
-
"python-dateutil==2.9.0.post0",
|
|
93
|
-
"pytz==2024.2",
|
|
94
|
-
"pywin32-ctypes==0.2.3",
|
|
95
|
-
"pyyaml==6.0.2",
|
|
96
|
-
"rapidfuzz==3.12.1",
|
|
97
|
-
"readme_renderer==44.0",
|
|
98
|
-
"regex==2024.11.6",
|
|
99
|
-
"requests==2.32.3",
|
|
100
|
-
"requests-toolbelt==1.0.0",
|
|
101
|
-
"rfc3986==2.0.0",
|
|
102
|
-
"rich==13.9.4",
|
|
103
|
-
"safetensors==0.5.3",
|
|
104
|
-
"scikit-learn==1.5.2",
|
|
105
|
-
"scipy==1.14.1",
|
|
106
|
-
"seaborn==0.13.2",
|
|
107
|
-
"silpa_common==0.3",
|
|
108
|
-
"six==1.17.0",
|
|
109
|
-
"sklearn-compat==0.1.3",
|
|
110
|
-
"sniffio==1.3.1",
|
|
111
|
-
"soundex==1.1.3",
|
|
112
|
-
"spellchecker==0.4",
|
|
113
|
-
"tenacity==9.0.0",
|
|
114
|
-
"termcolor==2.5.0",
|
|
115
|
-
"tf_keras==2.18.0",
|
|
116
|
-
"thefuzz==0.22.1",
|
|
117
|
-
"threadpoolctl==3.5.0",
|
|
118
|
-
"tokenizers==0.21.0",
|
|
119
|
-
"tqdm==4.67.1",
|
|
120
|
-
"twine==6.1.0",
|
|
121
|
-
"typing_extensions==4.12.2",
|
|
122
|
-
"tzdata==2024.2",
|
|
123
|
-
"urllib3==2.3.0",
|
|
124
|
-
"uv==0.6.5",
|
|
125
|
-
"werkzeug==3.1.3",
|
|
126
|
-
"wrapt==1.17.2",
|
|
127
|
-
"zipp==3.21.0",
|
|
128
|
-
"zstandard==0.23.0",
|
|
129
|
-
"presidio-analyzer",
|
|
130
|
-
"presidio-anonymizer"
|
|
131
|
-
],
|
|
132
|
-
description='Automated Data Cleaning Library',
|
|
133
|
-
long_description=long_description,
|
|
134
|
-
long_description_content_type="text/markdown",
|
|
135
|
-
author='Abhishek Kumar Singh',
|
|
136
|
-
author_email='dataspoof007@gmail.com',
|
|
137
|
-
url='https://github.com/DataSpoof/AutomatedCleaning',
|
|
138
|
-
classifiers=[
|
|
139
|
-
'Programming Language :: Python :: 3',
|
|
140
|
-
'License :: OSI Approved :: MIT License',
|
|
141
|
-
'Operating System :: OS Independent',
|
|
142
|
-
],
|
|
143
|
-
python_requires=">=3.11",
|
|
144
|
-
)
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
# Read README.md for the long description
|
|
4
|
+
with open("README.md", "r", encoding="utf-8") as fh:
|
|
5
|
+
long_description = fh.read()
|
|
6
|
+
|
|
7
|
+
setup(
|
|
8
|
+
name='AutomatedCleaning',
|
|
9
|
+
version='1.4',
|
|
10
|
+
packages=find_packages(),
|
|
11
|
+
install_requires=[
|
|
12
|
+
"absl-py==2.1.0",
|
|
13
|
+
"annotated-types==0.7.0",
|
|
14
|
+
"anthropic==0.49.0",
|
|
15
|
+
"anyio==4.8.0",
|
|
16
|
+
"astunparse==1.6.3",
|
|
17
|
+
"backports.tarfile==1.2.0",
|
|
18
|
+
"certifi==2025.1.31",
|
|
19
|
+
"charset-normalizer==3.4.1",
|
|
20
|
+
"click==8.1.8",
|
|
21
|
+
"colorama==0.4.6",
|
|
22
|
+
"contourpy==1.3.1",
|
|
23
|
+
"cycler==0.12.1",
|
|
24
|
+
"distro==1.9.0",
|
|
25
|
+
"docutils==0.21.2",
|
|
26
|
+
"et_xmlfile==2.0.0",
|
|
27
|
+
"filelock==3.17.0",
|
|
28
|
+
"flatbuffers==25.2.10",
|
|
29
|
+
"fonttools==4.55.2",
|
|
30
|
+
"fsspec==2025.3.0",
|
|
31
|
+
"fuzzywuzzy==0.18.0",
|
|
32
|
+
"gast==0.6.0",
|
|
33
|
+
"google-pasta==0.2.0",
|
|
34
|
+
"grpcio==1.70.0",
|
|
35
|
+
"h11==0.14.0",
|
|
36
|
+
"h5py==3.13.0",
|
|
37
|
+
"httpcore==1.0.7",
|
|
38
|
+
"httpx==0.28.1",
|
|
39
|
+
"huggingface-hub==0.29.2",
|
|
40
|
+
"idna==3.10",
|
|
41
|
+
"imbalanced-learn==0.13.0",
|
|
42
|
+
"imblearn==0.0",
|
|
43
|
+
"importlib_metadata==8.6.1",
|
|
44
|
+
"inexactsearch==1.0.2",
|
|
45
|
+
"jaraco.classes==3.4.0",
|
|
46
|
+
"jaraco.context==6.0.1",
|
|
47
|
+
"jaraco.functools==4.1.0",
|
|
48
|
+
"jinja2==3.1.6",
|
|
49
|
+
"jiter==0.9.0",
|
|
50
|
+
"joblib==1.4.2",
|
|
51
|
+
"jsonpatch==1.33",
|
|
52
|
+
"jsonpointer==3.0.0",
|
|
53
|
+
"kaleido==0.2.1",
|
|
54
|
+
"keras==3.9.0",
|
|
55
|
+
"keyring==25.6.0",
|
|
56
|
+
"kiwisolver==1.4.7",
|
|
57
|
+
"langchain-anthropic==0.3.10",
|
|
58
|
+
"langchain-core==0.3.45",
|
|
59
|
+
"langsmith==0.3.15",
|
|
60
|
+
"libclang==18.1.1",
|
|
61
|
+
"Markdown==3.7",
|
|
62
|
+
"markdown-it-py==3.0.0",
|
|
63
|
+
"markupsafe==3.0.2",
|
|
64
|
+
"matplotlib==3.9.3",
|
|
65
|
+
"mdurl==0.1.2",
|
|
66
|
+
"missingno==0.5.2",
|
|
67
|
+
"ml-dtypes==0.4.1",
|
|
68
|
+
"more-itertools==10.6.0",
|
|
69
|
+
"namex==0.0.8",
|
|
70
|
+
"narwhals==1.29.1",
|
|
71
|
+
"nh3==0.2.20",
|
|
72
|
+
"nltk==3.9.1",
|
|
73
|
+
"numpy==2.0.2",
|
|
74
|
+
"openpyxl==3.1.5",
|
|
75
|
+
"opt_einsum==3.4.0",
|
|
76
|
+
"optree==0.14.1",
|
|
77
|
+
"orjson==3.10.15",
|
|
78
|
+
"packaging==24.2",
|
|
79
|
+
"pandas==2.2.3",
|
|
80
|
+
"pillow==11.0.0",
|
|
81
|
+
"plotly==6.0.0",
|
|
82
|
+
"polars==1.23.0",
|
|
83
|
+
"protobuf==5.29.3",
|
|
84
|
+
"pyarrow==19.0.1",
|
|
85
|
+
"pydantic==2.10.6",
|
|
86
|
+
"pydantic_core==2.27.2",
|
|
87
|
+
"pyenchant==3.2.2",
|
|
88
|
+
"pyfiglet==1.0.2",
|
|
89
|
+
"pygments==2.19.1",
|
|
90
|
+
"pyparsing==3.2.0",
|
|
91
|
+
"pyspellchecker==0.8.1",
|
|
92
|
+
"python-dateutil==2.9.0.post0",
|
|
93
|
+
"pytz==2024.2",
|
|
94
|
+
"pywin32-ctypes==0.2.3",
|
|
95
|
+
"pyyaml==6.0.2",
|
|
96
|
+
"rapidfuzz==3.12.1",
|
|
97
|
+
"readme_renderer==44.0",
|
|
98
|
+
"regex==2024.11.6",
|
|
99
|
+
"requests==2.32.3",
|
|
100
|
+
"requests-toolbelt==1.0.0",
|
|
101
|
+
"rfc3986==2.0.0",
|
|
102
|
+
"rich==13.9.4",
|
|
103
|
+
"safetensors==0.5.3",
|
|
104
|
+
"scikit-learn==1.5.2",
|
|
105
|
+
"scipy==1.14.1",
|
|
106
|
+
"seaborn==0.13.2",
|
|
107
|
+
"silpa_common==0.3",
|
|
108
|
+
"six==1.17.0",
|
|
109
|
+
"sklearn-compat==0.1.3",
|
|
110
|
+
"sniffio==1.3.1",
|
|
111
|
+
"soundex==1.1.3",
|
|
112
|
+
"spellchecker==0.4",
|
|
113
|
+
"tenacity==9.0.0",
|
|
114
|
+
"termcolor==2.5.0",
|
|
115
|
+
"tf_keras==2.18.0",
|
|
116
|
+
"thefuzz==0.22.1",
|
|
117
|
+
"threadpoolctl==3.5.0",
|
|
118
|
+
"tokenizers==0.21.0",
|
|
119
|
+
"tqdm==4.67.1",
|
|
120
|
+
"twine==6.1.0",
|
|
121
|
+
"typing_extensions==4.12.2",
|
|
122
|
+
"tzdata==2024.2",
|
|
123
|
+
"urllib3==2.3.0",
|
|
124
|
+
"uv==0.6.5",
|
|
125
|
+
"werkzeug==3.1.3",
|
|
126
|
+
"wrapt==1.17.2",
|
|
127
|
+
"zipp==3.21.0",
|
|
128
|
+
"zstandard==0.23.0",
|
|
129
|
+
"presidio-analyzer",
|
|
130
|
+
"presidio-anonymizer"
|
|
131
|
+
],
|
|
132
|
+
description='Automated Data Cleaning Library',
|
|
133
|
+
long_description=long_description,
|
|
134
|
+
long_description_content_type="text/markdown",
|
|
135
|
+
author='Abhishek Kumar Singh',
|
|
136
|
+
author_email='dataspoof007@gmail.com',
|
|
137
|
+
url='https://github.com/DataSpoof/AutomatedCleaning',
|
|
138
|
+
classifiers=[
|
|
139
|
+
'Programming Language :: Python :: 3',
|
|
140
|
+
'License :: OSI Approved :: MIT License',
|
|
141
|
+
'Operating System :: OS Independent',
|
|
142
|
+
],
|
|
143
|
+
python_requires=">=3.11",
|
|
144
|
+
)
|
|
File without changes
|
{automatedcleaning-1.2 → automatedcleaning-1.4}/AutomatedCleaning.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|