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 +28 -0
- jayzz-0.1.0/README.md +10 -0
- jayzz-0.1.0/jayzz/__init__.py +6 -0
- jayzz-0.1.0/jayzz.egg-info/PKG-INFO +28 -0
- jayzz-0.1.0/jayzz.egg-info/SOURCES.txt +9 -0
- jayzz-0.1.0/jayzz.egg-info/dependency_links.txt +1 -0
- jayzz-0.1.0/jayzz.egg-info/requires.txt +4 -0
- jayzz-0.1.0/jayzz.egg-info/top_level.txt +1 -0
- jayzz-0.1.0/pyproject.toml +3 -0
- jayzz-0.1.0/setup.cfg +4 -0
- jayzz-0.1.0/setup.py +19 -0
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,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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
jayzz
|
jayzz-0.1.0/setup.cfg
ADDED
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
|
+
)
|