pyedahelper 1.0.0__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.

Potentially problematic release.


This version of pyedahelper might be problematic. Click here for more details.

File without changes
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyedahelper
3
+ Version: 1.0.0
4
+ Summary: A beginner-friendly Python library that simplifies Exploratory Data Analysis (EDA) and provides an interactive cheat-sheet for quick reference and tools for data visualization, cleaning and feature engineering.
5
+ Home-page: https://github.com/93Chidiebere/pyedahelper
6
+ Author: Chidiebere Christopher
7
+ Author-email: Chidiebere Christopher <vchidiebere.vc@gmail.com>
8
+ License: MIT
9
+ Project-URL: Homepage, https://github.com/93Cidiebere/pyedahelper
10
+ Project-URL: Repository, https://github.com/93Chidiebere/pyedahelper
11
+ Project-URL: Documentation, https://pypi.org/project/pyedahelper/
12
+ Requires-Python: >=3.8
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Requires-Dist: pandas>=1.3.0
16
+ Requires-Dist: numpy>=1.20
17
+ Requires-Dist: matplotlib>=3.4
18
+ Requires-Dist: seaborn>=0.11
19
+ Requires-Dist: rich>=13.0
20
+ Dynamic: author
21
+ Dynamic: license-file
22
+ Dynamic: requires-python
File without changes
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyedahelper
3
+ Version: 1.0.0
4
+ Summary: A beginner-friendly Python library that simplifies Exploratory Data Analysis (EDA) and provides an interactive cheat-sheet for quick reference and tools for data visualization, cleaning and feature engineering.
5
+ Home-page: https://github.com/93Chidiebere/pyedahelper
6
+ Author: Chidiebere Christopher
7
+ Author-email: Chidiebere Christopher <vchidiebere.vc@gmail.com>
8
+ License: MIT
9
+ Project-URL: Homepage, https://github.com/93Cidiebere/pyedahelper
10
+ Project-URL: Repository, https://github.com/93Chidiebere/pyedahelper
11
+ Project-URL: Documentation, https://pypi.org/project/pyedahelper/
12
+ Requires-Python: >=3.8
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Requires-Dist: pandas>=1.3.0
16
+ Requires-Dist: numpy>=1.20
17
+ Requires-Dist: matplotlib>=3.4
18
+ Requires-Dist: seaborn>=0.11
19
+ Requires-Dist: rich>=13.0
20
+ Dynamic: author
21
+ Dynamic: license-file
22
+ Dynamic: requires-python
@@ -0,0 +1,11 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ setup.cfg
5
+ setup.py
6
+ pyedahelper.egg-info/PKG-INFO
7
+ pyedahelper.egg-info/SOURCES.txt
8
+ pyedahelper.egg-info/dependency_links.txt
9
+ pyedahelper.egg-info/requires.txt
10
+ pyedahelper.egg-info/top_level.txt
11
+ tests/test_basic.py
@@ -0,0 +1,5 @@
1
+ pandas>=1.3.0
2
+ numpy>=1.20
3
+ matplotlib>=3.4
4
+ seaborn>=0.11
5
+ rich>=13.0
@@ -0,0 +1,30 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "pyedahelper"
7
+ version = "1.0.0"
8
+ description = "A beginner-friendly Python library that simplifies Exploratory Data Analysis (EDA) and provides an interactive cheat-sheet for quick reference and tools for data visualization, cleaning and feature engineering."
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ authors = [
12
+ { name = "Chidiebere Christopher", email = "vchidiebere.vc@gmail.com" }
13
+ ]
14
+ requires-python = ">=3.8"
15
+ dependencies = [
16
+ "pandas>=1.3.0",
17
+ "numpy>=1.20",
18
+ "matplotlib>=3.4",
19
+ "seaborn>=0.11",
20
+ "rich>=13.0"
21
+ ]
22
+
23
+ [project.urls]
24
+ Homepage = "https://github.com/93Cidiebere/pyedahelper"
25
+ Repository = "https://github.com/93Chidiebere/pyedahelper"
26
+ Documentation = "https://pypi.org/project/pyedahelper/"
27
+
28
+ [tool.setuptools.packages.find]
29
+ where = ["."]
30
+ include = ["pyedahelper*"]
@@ -0,0 +1,31 @@
1
+ [metadata]
2
+ name = pyedahelper
3
+ version = 1.0.0
4
+ author = Chidiebere Christopher
5
+ author_email = vchidieberevc@gmail.com
6
+ description = A beginner-friendly library for Exploratory Data Analysis (EDA)
7
+ long_description = file: README.md
8
+ long_description_content_type = text/markdown
9
+ url = https://github.com/93Chidiebere/pyedahelper
10
+ license = MIT
11
+ classifiers =
12
+ Programming Language :: Python :: 3
13
+ License :: OSI Approved :: MIT License
14
+ Operating System :: OS Independent
15
+ Intended Audience :: Education
16
+ Topic :: Scientific/Engineering :: Information Analysis
17
+
18
+ [options]
19
+ packages = find:
20
+ python_requires = >=3.8
21
+ install_requires =
22
+ pandas>=1.3.0
23
+ numpy>=1.20
24
+ matplotlib>=3.4
25
+ seaborn>=0.11
26
+ rich>=13.0
27
+
28
+ [egg_info]
29
+ tag_build =
30
+ tag_date = 0
31
+
@@ -0,0 +1,28 @@
1
+ # from setuptools import setup, find_packages
2
+
3
+ # setup(
4
+ # name='pyedahelper',
5
+ # version='0.1.0',
6
+ # packages=find_packages(),
7
+ # install_requires=[
8
+ # 'pandas',
9
+ # 'numpy',
10
+ # 'matplotlib',
11
+ # 'seaborn'
12
+ # ],
13
+ # )
14
+
15
+ from setuptools import setup, find_packages
16
+
17
+ setup(
18
+ name="pyedahelper",
19
+ version="1.0.0",
20
+ author="Chidiebere Christopher",
21
+ author_email="vchidiebere.vc@gmail.com",
22
+ description="An interactive cheat sheet for exploratory data analysis (EDA), and tools for data visualization, cleaning and feature engineering",
23
+ packages=find_packages(),
24
+ install_requires=[
25
+ "pandas", "numpy", "seaborn", "matplotlib", "scikit-learn", "rich"
26
+ ],
27
+ python_requires=">=3.8",
28
+ )
@@ -0,0 +1,11 @@
1
+ import pandas as pd
2
+ from edahelper.data_loading import load_data
3
+
4
+ def test_csv_load(tmp_path):
5
+ # Create sample CSV
6
+ data = pd.DataFrame({"A": [1, 2], "B": [3, 4]})
7
+ file = tmp_path / "test.csv"
8
+ data.to_csv(file, index=False)
9
+
10
+ df = load_data(file)
11
+ assert df.shape == (2, 2)