plotfig 0.1.0__tar.gz → 0.3.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.
Files changed (89) hide show
  1. plotfig-0.3.0/PKG-INFO +60 -0
  2. plotfig-0.3.0/README.md +41 -0
  3. plotfig-0.3.0/plotfig.egg-info/PKG-INFO +60 -0
  4. {plotfig-0.1.0 → plotfig-0.3.0}/plotfig.egg-info/SOURCES.txt +9 -4
  5. {plotfig-0.1.0 → plotfig-0.3.0}/pyproject.toml +5 -3
  6. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/__init__.py +16 -6
  7. plotfig-0.3.0/src/plotfig/bar.py +555 -0
  8. plotfig-0.3.0/src/plotfig/brain_connection.py +240 -0
  9. plotfig-0.1.0/src/plotfig/brain_surface_plot.py → plotfig-0.3.0/src/plotfig/brain_surface.py +411 -178
  10. plotfig-0.3.0/src/plotfig/circos.py +287 -0
  11. plotfig-0.3.0/src/plotfig/correlation.py +203 -0
  12. plotfig-0.3.0/src/plotfig/data/atlas_tables/macaque_d99.csv +299 -0
  13. plotfig-0.3.0/src/plotfig/data/neurodata/atlases/macaque_D99/L.d99.label.gii +357 -0
  14. plotfig-0.3.0/src/plotfig/data/neurodata/atlases/macaque_D99/R.d99.label.gii +357 -0
  15. plotfig-0.3.0/src/plotfig/matrix.py +123 -0
  16. plotfig-0.1.0/PKG-INFO +0 -62
  17. plotfig-0.1.0/README.md +0 -43
  18. plotfig-0.1.0/plotfig.egg-info/PKG-INFO +0 -62
  19. plotfig-0.1.0/src/plotfig/brain_connection_plot.py +0 -271
  20. plotfig-0.1.0/src/plotfig/circos_plot.py +0 -208
  21. plotfig-0.1.0/src/plotfig/common_plot.py +0 -784
  22. {plotfig-0.1.0 → plotfig-0.3.0}/LICENSE +0 -0
  23. {plotfig-0.1.0 → plotfig-0.3.0}/plotfig.egg-info/dependency_links.txt +0 -0
  24. {plotfig-0.1.0 → plotfig-0.3.0}/plotfig.egg-info/requires.txt +0 -0
  25. {plotfig-0.1.0 → plotfig-0.3.0}/plotfig.egg-info/top_level.txt +0 -0
  26. {plotfig-0.1.0 → plotfig-0.3.0}/setup.cfg +0 -0
  27. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/atlas_tables/chimpanzee_bna.csv +0 -0
  28. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/atlas_tables/human_bna.csv +0 -0
  29. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/atlas_tables/human_glasser.csv +0 -0
  30. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/atlas_tables/macaque_bna.csv +0 -0
  31. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/atlas_tables/macaque_charm5.csv +0 -0
  32. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/atlas_tables/macaque_charm5_add_13_sgms.csv +0 -0
  33. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/atlas_tables/macaque_charm6.csv +0 -0
  34. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/atlases/chimpanzee_BNA/ChimpBNA.L.32k_fs_LR.label.gii +0 -0
  35. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/atlases/chimpanzee_BNA/ChimpBNA.R.32k_fs_LR.label.gii +0 -0
  36. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/atlases/human_BNA/fsaverage.L.BNA.32k_fs_LR.label.gii +0 -0
  37. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/atlases/human_BNA/fsaverage.R.BNA.32k_fs_LR.label.gii +0 -0
  38. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/atlases/human_Glasser/fsaverage.L.Glasser.32k_fs_LR.label.gii +0 -0
  39. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/atlases/human_Glasser/fsaverage.R.Glasser.32k_fs_LR.label.gii +0 -0
  40. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/atlases/macaque_BNA/MBNA_124_32k_L.label.gii +0 -0
  41. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/atlases/macaque_BNA/MBNA_124_32k_R.label.gii +0 -0
  42. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/atlases/macaque_CHARM5/L.charm5.label.gii +0 -0
  43. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/atlases/macaque_CHARM5/R.charm5.label.gii +0 -0
  44. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/atlases/macaque_CHARM6/L.charm6.label.gii +0 -0
  45. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/atlases/macaque_CHARM6/R.charm6.label.gii +0 -0
  46. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/chimpanzee_BNA/ChimpYerkes29_v1.2.L.midthickness.32k_fs_LR.surf.gii +0 -0
  47. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/chimpanzee_BNA/ChimpYerkes29_v1.2.L.veryinflated.32k_fs_LR.surf.gii +0 -0
  48. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/chimpanzee_BNA/ChimpYerkes29_v1.2.R.midthickness.32k_fs_LR.surf.gii +0 -0
  49. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/chimpanzee_BNA/ChimpYerkes29_v1.2.R.veryinflated.32k_fs_LR.surf.gii +0 -0
  50. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/README.md +0 -0
  51. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-L_desc-nomedialwall_dparc.label.gii +0 -0
  52. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-L_desc-sulc_midthickness.shape.gii +0 -0
  53. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-L_desc-vaavg_midthickness.shape.gii +0 -0
  54. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-L_inflated.surf.gii +0 -0
  55. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-L_midthickness.surf.gii +0 -0
  56. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-L_sphere.surf.gii +0 -0
  57. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-L_veryinflated.surf.gii +0 -0
  58. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-R_desc-nomedialwall_dparc.label.gii +0 -0
  59. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-R_desc-sulc_midthickness.shape.gii +0 -0
  60. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-R_desc-vaavg_midthickness.shape.gii +0 -0
  61. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-R_inflated.surf.gii +0 -0
  62. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-R_midthickness.surf.gii +0 -0
  63. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-R_sphere.surf.gii +0 -0
  64. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-R_veryinflated.surf.gii +0 -0
  65. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_space-fsaverage_den-32k_hemi-L_sphere.surf.gii +0 -0
  66. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_space-fsaverage_den-32k_hemi-R_sphere.surf.gii +0 -0
  67. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.L.inflated.32k_fs_LR.surf.gii +0 -0
  68. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.L.midthickness.32k_fs_LR.surf.gii +0 -0
  69. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.L.pial.32k_fs_LR.surf.gii +0 -0
  70. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.L.veryinflated.32k_fs_LR.surf.gii +0 -0
  71. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.L.white.32k_fs_LR.surf.gii +0 -0
  72. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.R.inflated.32k_fs_LR.surf.gii +0 -0
  73. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.R.midthickness.32k_fs_LR.surf.gii +0 -0
  74. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.R.pial.32k_fs_LR.surf.gii +0 -0
  75. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.R.veryinflated.32k_fs_LR.surf.gii +0 -0
  76. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.R.white.32k_fs_LR.surf.gii +0 -0
  77. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/L.gray_surface.inf_300.surf.gii +0 -0
  78. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/L.gray_surface.surf.gii +0 -0
  79. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/L.mid_surface.inf_300.surf.gii +0 -0
  80. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/L.mid_surface.surf.gii +0 -0
  81. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/L.white_surface.inf_300.surf.gii +0 -0
  82. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/L.white_surface.surf.gii +0 -0
  83. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/R.gray_surface.inf_300.surf.gii +0 -0
  84. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/R.gray_surface.surf.gii +0 -0
  85. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/R.mid_surface.inf_300.surf.gii +0 -0
  86. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/R.mid_surface.surf.gii +0 -0
  87. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/R.white_surface.inf_300.surf.gii +0 -0
  88. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/R.white_surface.surf.gii +0 -0
  89. {plotfig-0.1.0 → plotfig-0.3.0}/src/plotfig/data/neurodata/volumes/macaque_NMT2/CHARM5_add_13_sgms_asym.nii.gz +0 -0
plotfig-0.3.0/PKG-INFO ADDED
@@ -0,0 +1,60 @@
1
+ Metadata-Version: 2.4
2
+ Name: plotfig
3
+ Version: 0.3.0
4
+ Summary: Scientific plotting package for Cognitive neuroscience
5
+ Author-email: Ricardo Ryn <ricardoRyn1317@gmail.com>
6
+ Keywords: neuroscience,plotting,visualization
7
+ Requires-Python: >=3.11
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Requires-Dist: matplotlib>=3.10.1
11
+ Requires-Dist: mne-connectivity>=0.7.0
12
+ Requires-Dist: nibabel>=5.3.2
13
+ Requires-Dist: numpy>=2.2.4
14
+ Requires-Dist: pandas>=2.2.3
15
+ Requires-Dist: plotly>=6.0.1
16
+ Requires-Dist: scipy>=1.15.2
17
+ Requires-Dist: surfplot>=0.2.0
18
+ Dynamic: license-file
19
+
20
+ # 简介
21
+
22
+ `plotfig` 是一个面向认知神经科学研究者的 Python 绘图工具包。
23
+ 封装了 `matplotlib` 的各种 API,简化了复杂绘图流程。
24
+ 可扩展,兼容 `matplotlib` 与 `seaborn`。
25
+
26
+ 希望它能让你专注于数据本身而不是琐碎的图形参数调试🥵。
27
+
28
+ [使用教程](https://ricardoryn.github.io/plotfig/)。
29
+
30
+ ![plotfig](./docs/assets/plotfig.png)
31
+
32
+ # 功能
33
+
34
+ 画图种类:
35
+ 1. 单组柱状/小提琴图
36
+ 1. 多组柱状图
37
+ 1. 相关图
38
+ 1. 矩阵图
39
+ 1. 脑区图
40
+ 1. 人类Glasser脑区图
41
+ 1. 人类BNA脑区图
42
+ 1. 猕猴CHARM 5-level脑区图
43
+ 1. 猕猴CHARM 6-level脑区图
44
+ 1. 猕猴BNA脑区图
45
+ 1. 连线图(circos图)
46
+ 1. 对称circos图
47
+ 1. 不对称circos图
48
+ 1. 脑连接图
49
+
50
+ # 叠甲
51
+
52
+ 闲来无事做,
53
+
54
+ 写堆函数来画图,
55
+
56
+ 文档一行无。
57
+
58
+ 最自嗨!
59
+
60
+ > 🌟 “调包侠再得一分!”🐶
@@ -0,0 +1,41 @@
1
+ # 简介
2
+
3
+ `plotfig` 是一个面向认知神经科学研究者的 Python 绘图工具包。
4
+ 封装了 `matplotlib` 的各种 API,简化了复杂绘图流程。
5
+ 可扩展,兼容 `matplotlib` 与 `seaborn`。
6
+
7
+ 希望它能让你专注于数据本身而不是琐碎的图形参数调试🥵。
8
+
9
+ [使用教程](https://ricardoryn.github.io/plotfig/)。
10
+
11
+ ![plotfig](./docs/assets/plotfig.png)
12
+
13
+ # 功能
14
+
15
+ 画图种类:
16
+ 1. 单组柱状/小提琴图
17
+ 1. 多组柱状图
18
+ 1. 相关图
19
+ 1. 矩阵图
20
+ 1. 脑区图
21
+ 1. 人类Glasser脑区图
22
+ 1. 人类BNA脑区图
23
+ 1. 猕猴CHARM 5-level脑区图
24
+ 1. 猕猴CHARM 6-level脑区图
25
+ 1. 猕猴BNA脑区图
26
+ 1. 连线图(circos图)
27
+ 1. 对称circos图
28
+ 1. 不对称circos图
29
+ 1. 脑连接图
30
+
31
+ # 叠甲
32
+
33
+ 闲来无事做,
34
+
35
+ 写堆函数来画图,
36
+
37
+ 文档一行无。
38
+
39
+ 最自嗨!
40
+
41
+ > 🌟 “调包侠再得一分!”🐶
@@ -0,0 +1,60 @@
1
+ Metadata-Version: 2.4
2
+ Name: plotfig
3
+ Version: 0.3.0
4
+ Summary: Scientific plotting package for Cognitive neuroscience
5
+ Author-email: Ricardo Ryn <ricardoRyn1317@gmail.com>
6
+ Keywords: neuroscience,plotting,visualization
7
+ Requires-Python: >=3.11
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Requires-Dist: matplotlib>=3.10.1
11
+ Requires-Dist: mne-connectivity>=0.7.0
12
+ Requires-Dist: nibabel>=5.3.2
13
+ Requires-Dist: numpy>=2.2.4
14
+ Requires-Dist: pandas>=2.2.3
15
+ Requires-Dist: plotly>=6.0.1
16
+ Requires-Dist: scipy>=1.15.2
17
+ Requires-Dist: surfplot>=0.2.0
18
+ Dynamic: license-file
19
+
20
+ # 简介
21
+
22
+ `plotfig` 是一个面向认知神经科学研究者的 Python 绘图工具包。
23
+ 封装了 `matplotlib` 的各种 API,简化了复杂绘图流程。
24
+ 可扩展,兼容 `matplotlib` 与 `seaborn`。
25
+
26
+ 希望它能让你专注于数据本身而不是琐碎的图形参数调试🥵。
27
+
28
+ [使用教程](https://ricardoryn.github.io/plotfig/)。
29
+
30
+ ![plotfig](./docs/assets/plotfig.png)
31
+
32
+ # 功能
33
+
34
+ 画图种类:
35
+ 1. 单组柱状/小提琴图
36
+ 1. 多组柱状图
37
+ 1. 相关图
38
+ 1. 矩阵图
39
+ 1. 脑区图
40
+ 1. 人类Glasser脑区图
41
+ 1. 人类BNA脑区图
42
+ 1. 猕猴CHARM 5-level脑区图
43
+ 1. 猕猴CHARM 6-level脑区图
44
+ 1. 猕猴BNA脑区图
45
+ 1. 连线图(circos图)
46
+ 1. 对称circos图
47
+ 1. 不对称circos图
48
+ 1. 脑连接图
49
+
50
+ # 叠甲
51
+
52
+ 闲来无事做,
53
+
54
+ 写堆函数来画图,
55
+
56
+ 文档一行无。
57
+
58
+ 最自嗨!
59
+
60
+ > 🌟 “调包侠再得一分!”🐶
@@ -7,10 +7,12 @@ plotfig.egg-info/dependency_links.txt
7
7
  plotfig.egg-info/requires.txt
8
8
  plotfig.egg-info/top_level.txt
9
9
  src/plotfig/__init__.py
10
- src/plotfig/brain_connection_plot.py
11
- src/plotfig/brain_surface_plot.py
12
- src/plotfig/circos_plot.py
13
- src/plotfig/common_plot.py
10
+ src/plotfig/bar.py
11
+ src/plotfig/brain_connection.py
12
+ src/plotfig/brain_surface.py
13
+ src/plotfig/circos.py
14
+ src/plotfig/correlation.py
15
+ src/plotfig/matrix.py
14
16
  src/plotfig/data/atlas_tables/chimpanzee_bna.csv
15
17
  src/plotfig/data/atlas_tables/human_bna.csv
16
18
  src/plotfig/data/atlas_tables/human_glasser.csv
@@ -18,6 +20,7 @@ src/plotfig/data/atlas_tables/macaque_bna.csv
18
20
  src/plotfig/data/atlas_tables/macaque_charm5.csv
19
21
  src/plotfig/data/atlas_tables/macaque_charm5_add_13_sgms.csv
20
22
  src/plotfig/data/atlas_tables/macaque_charm6.csv
23
+ src/plotfig/data/atlas_tables/macaque_d99.csv
21
24
  src/plotfig/data/neurodata/atlases/chimpanzee_BNA/ChimpBNA.L.32k_fs_LR.label.gii
22
25
  src/plotfig/data/neurodata/atlases/chimpanzee_BNA/ChimpBNA.R.32k_fs_LR.label.gii
23
26
  src/plotfig/data/neurodata/atlases/human_BNA/fsaverage.L.BNA.32k_fs_LR.label.gii
@@ -30,6 +33,8 @@ src/plotfig/data/neurodata/atlases/macaque_CHARM5/L.charm5.label.gii
30
33
  src/plotfig/data/neurodata/atlases/macaque_CHARM5/R.charm5.label.gii
31
34
  src/plotfig/data/neurodata/atlases/macaque_CHARM6/L.charm6.label.gii
32
35
  src/plotfig/data/neurodata/atlases/macaque_CHARM6/R.charm6.label.gii
36
+ src/plotfig/data/neurodata/atlases/macaque_D99/L.d99.label.gii
37
+ src/plotfig/data/neurodata/atlases/macaque_D99/R.d99.label.gii
33
38
  src/plotfig/data/neurodata/surfaces/chimpanzee_BNA/ChimpYerkes29_v1.2.L.midthickness.32k_fs_LR.surf.gii
34
39
  src/plotfig/data/neurodata/surfaces/chimpanzee_BNA/ChimpYerkes29_v1.2.L.veryinflated.32k_fs_LR.surf.gii
35
40
  src/plotfig/data/neurodata/surfaces/chimpanzee_BNA/ChimpYerkes29_v1.2.R.midthickness.32k_fs_LR.surf.gii
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "plotfig"
3
- version = "0.1.0"
3
+ version = "0.3.0"
4
4
  description = "Scientific plotting package for Cognitive neuroscience"
5
5
  keywords = ["neuroscience", "plotting", "visualization"]
6
6
  readme = "README.md"
@@ -21,7 +21,9 @@ dependencies = [
21
21
 
22
22
  [dependency-groups]
23
23
  dev = [
24
- "joblib>=1.4.2",
24
+ "mkdocs-material>=9.6.14",
25
+ "mkdocs-minify-plugin>=0.8.0",
26
+ "mkdocstrings[python]>=0.29.1",
25
27
  ]
26
28
 
27
29
  [build-system]
@@ -46,7 +48,7 @@ exclude = [
46
48
 
47
49
  [tool.commitizen]
48
50
  name = "cz_conventional_commits"
49
- tag_format = "0.1.0"
51
+ tag_format = "v$version"
50
52
  version_scheme = "pep440"
51
53
  version_provider = "pep621"
52
54
  update_changelog_on_bump = true
@@ -1,10 +1,12 @@
1
- from .common_plot import (
1
+ from .bar import (
2
2
  plot_one_group_bar_figure,
3
3
  plot_one_group_violin_figure,
4
- plot_correlation_figure,
5
- plot_matrix_figure,
4
+ plot_multi_group_bar_figure,
6
5
  )
7
- from .brain_surface_plot import (
6
+ from .correlation import plot_correlation_figure
7
+ from .matrix import plot_matrix_figure
8
+ from .circos import plot_symmetric_circle_figure, plot_asymmetric_circle_figure
9
+ from .brain_surface import (
8
10
  plot_human_brain_figure,
9
11
  plot_human_hemi_brain_figure,
10
12
  plot_macaque_brain_figure,
@@ -12,12 +14,14 @@ from .brain_surface_plot import (
12
14
  plot_chimpanzee_brain_figure,
13
15
  plot_chimpanzee_hemi_brain_figure,
14
16
  )
15
- from .circos_plot import plot_symmetric_circle_figure, plot_asymmetric_circle_figure
16
- from .brain_connection_plot import plot_brain_connection_figure
17
+ from .brain_connection import plot_brain_connection_figure, save_brain_connection_frames
18
+
19
+ from importlib.metadata import version, PackageNotFoundError
17
20
 
18
21
  __all__ = [
19
22
  "plot_one_group_bar_figure",
20
23
  "plot_one_group_violin_figure",
24
+ "plot_multi_group_bar_figure",
21
25
  "plot_correlation_figure",
22
26
  "plot_matrix_figure",
23
27
  "plot_human_brain_figure",
@@ -29,4 +33,10 @@ __all__ = [
29
33
  "plot_symmetric_circle_figure",
30
34
  "plot_asymmetric_circle_figure",
31
35
  "plot_brain_connection_figure",
36
+ "save_brain_connection_frames"
32
37
  ]
38
+
39
+ try:
40
+ __version__ = version("plotfig")
41
+ except PackageNotFoundError:
42
+ __version__ = "unknown"