lochan-eda 0.0.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.
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: lochan-eda
3
+ Version: 0.0.1
4
+ Summary: An automated Exploratory Data Analysis (EDA) library.
5
+ Author: Lochan Jangid
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.8
10
+ Description-Content-Type: text/markdown
11
+ Requires-Dist: pandas
12
+ Requires-Dist: numpy
13
+ Requires-Dist: matplotlib
14
+ Requires-Dist: seaborn
15
+ Requires-Dist: scikit-learn
16
+ Dynamic: author
17
+ Dynamic: classifier
18
+ Dynamic: description
19
+ Dynamic: description-content-type
20
+ Dynamic: requires-dist
21
+ Dynamic: requires-python
22
+ Dynamic: summary
23
+
24
+ # lochan-eda
25
+ An automated Exploratory Data Analysis (EDA) framework.
26
+
27
+ *Note: This project is currently in active development.*
@@ -0,0 +1,4 @@
1
+ # lochan-eda
2
+ An automated Exploratory Data Analysis (EDA) framework.
3
+
4
+ *Note: This project is currently in active development.*
@@ -0,0 +1,2 @@
1
+ __version__ = "0.0.1"
2
+ __author__ = "Lochan Jangid"
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: lochan-eda
3
+ Version: 0.0.1
4
+ Summary: An automated Exploratory Data Analysis (EDA) library.
5
+ Author: Lochan Jangid
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.8
10
+ Description-Content-Type: text/markdown
11
+ Requires-Dist: pandas
12
+ Requires-Dist: numpy
13
+ Requires-Dist: matplotlib
14
+ Requires-Dist: seaborn
15
+ Requires-Dist: scikit-learn
16
+ Dynamic: author
17
+ Dynamic: classifier
18
+ Dynamic: description
19
+ Dynamic: description-content-type
20
+ Dynamic: requires-dist
21
+ Dynamic: requires-python
22
+ Dynamic: summary
23
+
24
+ # lochan-eda
25
+ An automated Exploratory Data Analysis (EDA) framework.
26
+
27
+ *Note: This project is currently in active development.*
@@ -0,0 +1,8 @@
1
+ README.md
2
+ setup.py
3
+ lochan_eda/__init__.py
4
+ lochan_eda.egg-info/PKG-INFO
5
+ lochan_eda.egg-info/SOURCES.txt
6
+ lochan_eda.egg-info/dependency_links.txt
7
+ lochan_eda.egg-info/requires.txt
8
+ lochan_eda.egg-info/top_level.txt
@@ -0,0 +1,5 @@
1
+ pandas
2
+ numpy
3
+ matplotlib
4
+ seaborn
5
+ scikit-learn
@@ -0,0 +1 @@
1
+ lochan_eda
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,24 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="lochan-eda",
5
+ version="0.0.1",
6
+ author="Lochan Jangid",
7
+ description="An automated Exploratory Data Analysis (EDA) library.",
8
+ long_description=open("README.md").read(),
9
+ long_description_content_type="text/markdown",
10
+ packages=find_packages(),
11
+ python_requires=">=3.8",
12
+ install_requires=[
13
+ "pandas",
14
+ "numpy",
15
+ "matplotlib",
16
+ "seaborn",
17
+ "scikit-learn"
18
+ ],
19
+ classifiers=[
20
+ "Programming Language :: Python :: 3",
21
+ "License :: OSI Approved :: MIT License",
22
+ "Operating System :: OS Independent",
23
+ ],
24
+ )