Skip to content

Commit 45f396b

Browse files
committed
Added package dependencies for PyAutoPlot.
1 parent 43b2a11 commit 45f396b

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@
77

88
PyAutoPlot is an open-source Python library designed to make dataset analysis much easier by generating helpful detailed plots using `matplotlib`. It automatically generates appropriate plots based on the dataset you feed it.
99

10+
### Changes in version 1.0.1:
11+
- Added package dependencies to PyAutoPlot: `matplotlib>=3.0.0`, `pandas>=1.0.0`, and `numpy>=1.18.0`.
12+
13+
### Changes in version 1.0.0:
14+
- `AutoPlot` class, along with `auto_plot` and `plot` functions. `auto_plot` automatically generates suitable plots based on values in your dataset.
15+
16+
> [!IMPORTANT]
17+
> The `AutoPlot` object needs to be initialized with a **CSV dataset** before any plots can be generated using either `plot` or `auto_plot`.
18+
1019
## Installation
1120

1221
You can install PyAutoPlot using pip:

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,9 @@
2727
'Programming Language :: Python :: 3.13',
2828
],
2929
python_requires='>=3.6',
30+
install_requires=[
31+
'matplotlib>=3.0.0',
32+
'pandas>=1.0.0',
33+
'numpy>=1.18.0'
34+
],
3035
)

0 commit comments

Comments
 (0)