acadplot 0.1.1__tar.gz → 0.1.2__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.
- {acadplot-0.1.1 → acadplot-0.1.2}/PKG-INFO +3 -3
- {acadplot-0.1.1 → acadplot-0.1.2}/README.md +1 -1
- {acadplot-0.1.1 → acadplot-0.1.2}/pyproject.toml +2 -2
- {acadplot-0.1.1 → acadplot-0.1.2}/src/acadplot/__init__.py +1 -1
- {acadplot-0.1.1 → acadplot-0.1.2}/src/acadplot/charts.py +1 -1
- {acadplot-0.1.1 → acadplot-0.1.2}/LICENSE +0 -0
- {acadplot-0.1.1 → acadplot-0.1.2}/src/acadplot/bar.py +0 -0
- {acadplot-0.1.1 → acadplot-0.1.2}/src/acadplot/draw.py +0 -0
- {acadplot-0.1.1 → acadplot-0.1.2}/src/acadplot/line.py +0 -0
- {acadplot-0.1.1 → acadplot-0.1.2}/src/acadplot/plot.py +0 -0
- {acadplot-0.1.1 → acadplot-0.1.2}/src/acadplot/styles.py +0 -0
- {acadplot-0.1.1 → acadplot-0.1.2}/src/acadplot/utils.py +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: acadplot
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: A simple plotting tool using matplotlib for generating plots and subplots for research papers.
|
|
5
5
|
Author: Sudip Bhujel
|
|
6
6
|
Author-email: Sudip Bhujel <code@sudipbhujel.com.np>
|
|
7
7
|
License-Expression: MIT
|
|
8
8
|
License-File: LICENSE
|
|
9
9
|
Requires-Dist: matplotlib>=3.10.8
|
|
10
|
-
Requires-Python: >=3.
|
|
10
|
+
Requires-Python: >=3.12
|
|
11
11
|
Description-Content-Type: text/markdown
|
|
12
12
|
|
|
13
13
|
# AcadPlot
|
|
@@ -115,7 +115,7 @@ pip install -e .
|
|
|
115
115
|
|
|
116
116
|
## Requirements
|
|
117
117
|
|
|
118
|
-
- Python >= 3.
|
|
118
|
+
- Python >= 3.12
|
|
119
119
|
- matplotlib >= 3.10.8
|
|
120
120
|
|
|
121
121
|
## Usage
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "acadplot"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.2"
|
|
4
4
|
description = "A simple plotting tool using matplotlib for generating plots and subplots for research papers."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "MIT"
|
|
@@ -8,7 +8,7 @@ license-files = ["LICENSE"]
|
|
|
8
8
|
authors = [
|
|
9
9
|
{ name = "Sudip Bhujel", email = "code@sudipbhujel.com.np" }
|
|
10
10
|
]
|
|
11
|
-
requires-python = ">=3.
|
|
11
|
+
requires-python = ">=3.12"
|
|
12
12
|
dependencies = [
|
|
13
13
|
"matplotlib>=3.10.8",
|
|
14
14
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|