icplot 0.0.5__tar.gz → 0.0.6__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: icplot
3
- Version: 0.0.5
3
+ Version: 0.0.6
4
4
  Summary: Utilities for generating plots and graphics for technical reports.
5
5
  Author-email: "James Grogan, Irish Centre for High End Computing" <james.grogan@ichec.ie>
6
6
  Project-URL: Repository, https://git.ichec.ie/performance/toolshed/icplot
@@ -15,8 +15,6 @@ Requires-Python: >=3.8
15
15
  Description-Content-Type: text/markdown
16
16
  License-File: LICENSE
17
17
  Requires-Dist: wand
18
- Requires-Dist: pycairo
19
- Requires-Dist: CairoSVG
20
18
  Requires-Dist: matplotlib
21
19
  Requires-Dist: iccore==0.0.8
22
20
  Provides-Extra: test
@@ -25,6 +23,9 @@ Requires-Dist: pytest-cov; extra == "test"
25
23
  Requires-Dist: pytest-sugar; extra == "test"
26
24
  Requires-Dist: black; extra == "test"
27
25
  Requires-Dist: mypy; extra == "test"
26
+ Provides-Extra: cairo
27
+ Requires-Dist: pycairo; extra == "cairo"
28
+ Requires-Dist: CairoSVG; extra == "cairo"
28
29
 
29
30
  # icplot
30
31
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "icplot"
3
- version = "0.0.5"
3
+ version = "0.0.6"
4
4
  authors = [
5
5
  { name="James Grogan, Irish Centre for High End Computing", email="james.grogan@ichec.ie" },
6
6
  ]
@@ -17,8 +17,6 @@ classifiers = [
17
17
  keywords = ["Publishing", "Technical Reports", "Graphics"]
18
18
 
19
19
  dependencies = ["wand",
20
- "pycairo",
21
- "CairoSVG",
22
20
  "matplotlib",
23
21
  "iccore==0.0.8"]
24
22
 
@@ -35,6 +33,11 @@ test = [
35
33
  "mypy"
36
34
  ]
37
35
 
36
+ cairo = [
37
+ "pycairo",
38
+ "CairoSVG"
39
+ ]
40
+
38
41
  [build-system]
39
42
  requires = ["setuptools>=61.0", "wheel"]
40
43
  build-backend = "setuptools.build_meta"
@@ -71,6 +74,7 @@ deps =
71
74
  pytest>=7
72
75
  pytest-sugar
73
76
  pytest-cov
77
+ .[cairo]
74
78
  commands =
75
79
  pytest {posargs:test}
76
80
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: icplot
3
- Version: 0.0.5
3
+ Version: 0.0.6
4
4
  Summary: Utilities for generating plots and graphics for technical reports.
5
5
  Author-email: "James Grogan, Irish Centre for High End Computing" <james.grogan@ichec.ie>
6
6
  Project-URL: Repository, https://git.ichec.ie/performance/toolshed/icplot
@@ -15,8 +15,6 @@ Requires-Python: >=3.8
15
15
  Description-Content-Type: text/markdown
16
16
  License-File: LICENSE
17
17
  Requires-Dist: wand
18
- Requires-Dist: pycairo
19
- Requires-Dist: CairoSVG
20
18
  Requires-Dist: matplotlib
21
19
  Requires-Dist: iccore==0.0.8
22
20
  Provides-Extra: test
@@ -25,6 +23,9 @@ Requires-Dist: pytest-cov; extra == "test"
25
23
  Requires-Dist: pytest-sugar; extra == "test"
26
24
  Requires-Dist: black; extra == "test"
27
25
  Requires-Dist: mypy; extra == "test"
26
+ Provides-Extra: cairo
27
+ Requires-Dist: pycairo; extra == "cairo"
28
+ Requires-Dist: CairoSVG; extra == "cairo"
28
29
 
29
30
  # icplot
30
31
 
@@ -1,9 +1,11 @@
1
1
  wand
2
- pycairo
3
- CairoSVG
4
2
  matplotlib
5
3
  iccore==0.0.8
6
4
 
5
+ [cairo]
6
+ pycairo
7
+ CairoSVG
8
+
7
9
  [test]
8
10
  pytest
9
11
  pytest-cov
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes