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.
- lochan_eda-0.0.1/PKG-INFO +27 -0
- lochan_eda-0.0.1/README.md +4 -0
- lochan_eda-0.0.1/lochan_eda/__init__.py +2 -0
- lochan_eda-0.0.1/lochan_eda.egg-info/PKG-INFO +27 -0
- lochan_eda-0.0.1/lochan_eda.egg-info/SOURCES.txt +8 -0
- lochan_eda-0.0.1/lochan_eda.egg-info/dependency_links.txt +1 -0
- lochan_eda-0.0.1/lochan_eda.egg-info/requires.txt +5 -0
- lochan_eda-0.0.1/lochan_eda.egg-info/top_level.txt +1 -0
- lochan_eda-0.0.1/setup.cfg +4 -0
- lochan_eda-0.0.1/setup.py +24 -0
|
@@ -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,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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lochan_eda
|
|
@@ -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
|
+
)
|