jayzz 0.1.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.
jayzz-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.4
2
+ Name: jayzz
3
+ Version: 0.1.0
4
+ Summary: Unified access to NumPy, Pandas, Seaborn, and Matplotlib via a single import
5
+ Author: Jayesh
6
+ Requires-Python: >=3.8
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: numpy
9
+ Requires-Dist: pandas
10
+ Requires-Dist: seaborn
11
+ Requires-Dist: matplotlib
12
+ Dynamic: author
13
+ Dynamic: description
14
+ Dynamic: description-content-type
15
+ Dynamic: requires-dist
16
+ Dynamic: requires-python
17
+ Dynamic: summary
18
+
19
+ # jayzz
20
+
21
+ jayzz is a lightweight Python umbrella package that provides unified access to popular data science libraries — NumPy, Pandas, Seaborn, and Matplotlib — using a single import.
22
+
23
+ ## Why jayzz?
24
+ Instead of importing multiple libraries separately, jayzz allows you to write cleaner and more readable code by accessing all core data science tools through one namespace.
25
+
26
+ ## Installation
27
+ ```bash
28
+ pip install jayzz
jayzz-0.1.0/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # jayzz
2
+
3
+ jayzz is a lightweight Python umbrella package that provides unified access to popular data science libraries — NumPy, Pandas, Seaborn, and Matplotlib — using a single import.
4
+
5
+ ## Why jayzz?
6
+ Instead of importing multiple libraries separately, jayzz allows you to write cleaner and more readable code by accessing all core data science tools through one namespace.
7
+
8
+ ## Installation
9
+ ```bash
10
+ pip install jayzz
@@ -0,0 +1,6 @@
1
+ import numpy as np
2
+ import pandas as pd
3
+ import seaborn as sns
4
+ import matplotlib.pyplot as plt
5
+
6
+ __all__ = ["np", "pd", "sns", "plt"]
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.4
2
+ Name: jayzz
3
+ Version: 0.1.0
4
+ Summary: Unified access to NumPy, Pandas, Seaborn, and Matplotlib via a single import
5
+ Author: Jayesh
6
+ Requires-Python: >=3.8
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: numpy
9
+ Requires-Dist: pandas
10
+ Requires-Dist: seaborn
11
+ Requires-Dist: matplotlib
12
+ Dynamic: author
13
+ Dynamic: description
14
+ Dynamic: description-content-type
15
+ Dynamic: requires-dist
16
+ Dynamic: requires-python
17
+ Dynamic: summary
18
+
19
+ # jayzz
20
+
21
+ jayzz is a lightweight Python umbrella package that provides unified access to popular data science libraries — NumPy, Pandas, Seaborn, and Matplotlib — using a single import.
22
+
23
+ ## Why jayzz?
24
+ Instead of importing multiple libraries separately, jayzz allows you to write cleaner and more readable code by accessing all core data science tools through one namespace.
25
+
26
+ ## Installation
27
+ ```bash
28
+ pip install jayzz
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ setup.py
4
+ jayzz/__init__.py
5
+ jayzz.egg-info/PKG-INFO
6
+ jayzz.egg-info/SOURCES.txt
7
+ jayzz.egg-info/dependency_links.txt
8
+ jayzz.egg-info/requires.txt
9
+ jayzz.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ numpy
2
+ pandas
3
+ seaborn
4
+ matplotlib
@@ -0,0 +1 @@
1
+ jayzz
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
jayzz-0.1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
jayzz-0.1.0/setup.py ADDED
@@ -0,0 +1,19 @@
1
+
2
+ from setuptools import setup, find_packages
3
+
4
+ setup(
5
+ name="jayzz",
6
+ version="0.1.0",
7
+ packages=find_packages(),
8
+ install_requires=[
9
+ "numpy",
10
+ "pandas",
11
+ "seaborn",
12
+ "matplotlib"
13
+ ],
14
+ author="Jayesh",
15
+ description="Unified access to NumPy, Pandas, Seaborn, and Matplotlib via a single import",
16
+ long_description=open("README.md", encoding="utf-8").read(),
17
+ long_description_content_type="text/markdown",
18
+ python_requires=">=3.8",
19
+ )