nettracer3d 0.4.5__tar.gz → 0.4.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.
Files changed (27) hide show
  1. {nettracer3d-0.4.5/src/nettracer3d.egg-info → nettracer3d-0.4.6}/PKG-INFO +1 -14
  2. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/pyproject.toml +4 -18
  3. {nettracer3d-0.4.5 → nettracer3d-0.4.6/src/nettracer3d.egg-info}/PKG-INFO +1 -14
  4. nettracer3d-0.4.6/src/nettracer3d.egg-info/requires.txt +24 -0
  5. nettracer3d-0.4.5/src/nettracer3d.egg-info/requires.txt +0 -44
  6. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/LICENSE +0 -0
  7. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/README.md +0 -0
  8. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/setup.cfg +0 -0
  9. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/src/nettracer3d/__init__.py +0 -0
  10. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/src/nettracer3d/community_extractor.py +0 -0
  11. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/src/nettracer3d/hub_getter.py +0 -0
  12. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/src/nettracer3d/modularity.py +0 -0
  13. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/src/nettracer3d/morphology.py +0 -0
  14. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/src/nettracer3d/nettracer.py +0 -0
  15. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/src/nettracer3d/nettracer_gui.py +0 -0
  16. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/src/nettracer3d/network_analysis.py +0 -0
  17. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/src/nettracer3d/network_draw.py +0 -0
  18. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/src/nettracer3d/node_draw.py +0 -0
  19. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/src/nettracer3d/proximity.py +0 -0
  20. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/src/nettracer3d/run.py +0 -0
  21. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/src/nettracer3d/segmenter.py +0 -0
  22. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/src/nettracer3d/simple_network.py +0 -0
  23. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/src/nettracer3d/smart_dilate.py +0 -0
  24. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/src/nettracer3d.egg-info/SOURCES.txt +0 -0
  25. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/src/nettracer3d.egg-info/dependency_links.txt +0 -0
  26. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/src/nettracer3d.egg-info/entry_points.txt +0 -0
  27. {nettracer3d-0.4.5 → nettracer3d-0.4.6}/src/nettracer3d.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: nettracer3d
3
- Version: 0.4.5
3
+ Version: 0.4.6
4
4
  Summary: Scripts for intializing and analyzing networks from segmentations of three dimensional images.
5
5
  Author-email: Liam McLaughlin <boom2449@gmail.com>
6
6
  Project-URL: User_Manual, https://drive.google.com/drive/folders/1fTkz3n4LN9_VxKRKC8lVQSlrz_wq0bVn?usp=drive_link
@@ -28,23 +28,10 @@ Requires-Dist: PyQt6
28
28
  Requires-Dist: scikit-learn
29
29
  Provides-Extra: cuda11
30
30
  Requires-Dist: cupy-cuda11x; extra == "cuda11"
31
- Requires-Dist: torch==2.2.0+cu118; extra == "cuda11"
32
- Requires-Dist: torchvision==0.17.0+cu118; extra == "cuda11"
33
- Requires-Dist: torchaudio==2.2.0+cu118; extra == "cuda11"
34
31
  Provides-Extra: cuda12
35
32
  Requires-Dist: cupy-cuda12x; extra == "cuda12"
36
- Requires-Dist: torch==2.2.0+cu121; extra == "cuda12"
37
- Requires-Dist: torchvision==0.17.0+cu121; extra == "cuda12"
38
- Requires-Dist: torchaudio==2.2.0+cu121; extra == "cuda12"
39
33
  Provides-Extra: cupy
40
34
  Requires-Dist: cupy; extra == "cupy"
41
- Requires-Dist: torch; extra == "cupy"
42
- Requires-Dist: torchvision; extra == "cupy"
43
- Requires-Dist: torchaudio; extra == "cupy"
44
- Provides-Extra: gpu
45
- Requires-Dist: cupy-cuda11x; (platform_system == "Linux" and platform_machine == "x86_64") and extra == "gpu"
46
- Requires-Dist: cupy-cuda12x; platform_system == "Windows" and extra == "gpu"
47
- Requires-Dist: cupy; platform_system == "Darwin" and extra == "gpu"
48
35
 
49
36
  NetTracer3D is a python package developed for both 2D and 3D analysis of microscopic images in the .tif file format. It supports generation of 3D networks showing the relationships between objects (or nodes) in three dimensional space, either based on their own proximity or connectivity via connecting objects such as nerves or blood vessels. In addition to these functionalities are several advanced 3D data processing algorithms, such as labeling of branched structures or abstraction of branched structures into networks. Note that nettracer3d uses segmented data, which can be segmented from other softwares such as ImageJ and imported into NetTracer3D, although it does offer its own segmentation via intensity and volumetric thresholding, or random forest machine learning segmentation. NetTracer3D currently has a fully functional GUI. To use the GUI, after installing the nettracer3d package via pip, enter the command 'nettracer3d' in your command prompt:
50
37
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "nettracer3d"
3
- version = "0.4.5"
3
+ version = "0.4.6"
4
4
  authors = [
5
5
  { name="Liam McLaughlin", email="boom2449@gmail.com" },
6
6
  ]
@@ -33,27 +33,13 @@ classifiers = [
33
33
 
34
34
  [project.optional-dependencies]
35
35
  CUDA11 = [
36
- "cupy-cuda11x",
37
- "torch==2.2.0+cu118",
38
- "torchvision==0.17.0+cu118",
39
- "torchaudio==2.2.0+cu118"
36
+ "cupy-cuda11x"
40
37
  ]
41
38
  CUDA12 = [
42
- "cupy-cuda12x",
43
- "torch==2.2.0+cu121",
44
- "torchvision==0.17.0+cu121",
45
- "torchaudio==2.2.0+cu121"
39
+ "cupy-cuda12x"
46
40
  ]
47
41
  cupy = [
48
- "cupy",
49
- "torch", # Will get CPU version by default
50
- "torchvision",
51
- "torchaudio"
52
- ]
53
- GPU = [ # Meta-dependency that user can choose based on their CUDA version
54
- "cupy-cuda11x ; platform_system=='Linux' and platform_machine=='x86_64'",
55
- "cupy-cuda12x ; platform_system=='Windows'",
56
- "cupy ; platform_system=='Darwin'"
42
+ "cupy"
57
43
  ]
58
44
 
59
45
  [project.scripts]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: nettracer3d
3
- Version: 0.4.5
3
+ Version: 0.4.6
4
4
  Summary: Scripts for intializing and analyzing networks from segmentations of three dimensional images.
5
5
  Author-email: Liam McLaughlin <boom2449@gmail.com>
6
6
  Project-URL: User_Manual, https://drive.google.com/drive/folders/1fTkz3n4LN9_VxKRKC8lVQSlrz_wq0bVn?usp=drive_link
@@ -28,23 +28,10 @@ Requires-Dist: PyQt6
28
28
  Requires-Dist: scikit-learn
29
29
  Provides-Extra: cuda11
30
30
  Requires-Dist: cupy-cuda11x; extra == "cuda11"
31
- Requires-Dist: torch==2.2.0+cu118; extra == "cuda11"
32
- Requires-Dist: torchvision==0.17.0+cu118; extra == "cuda11"
33
- Requires-Dist: torchaudio==2.2.0+cu118; extra == "cuda11"
34
31
  Provides-Extra: cuda12
35
32
  Requires-Dist: cupy-cuda12x; extra == "cuda12"
36
- Requires-Dist: torch==2.2.0+cu121; extra == "cuda12"
37
- Requires-Dist: torchvision==0.17.0+cu121; extra == "cuda12"
38
- Requires-Dist: torchaudio==2.2.0+cu121; extra == "cuda12"
39
33
  Provides-Extra: cupy
40
34
  Requires-Dist: cupy; extra == "cupy"
41
- Requires-Dist: torch; extra == "cupy"
42
- Requires-Dist: torchvision; extra == "cupy"
43
- Requires-Dist: torchaudio; extra == "cupy"
44
- Provides-Extra: gpu
45
- Requires-Dist: cupy-cuda11x; (platform_system == "Linux" and platform_machine == "x86_64") and extra == "gpu"
46
- Requires-Dist: cupy-cuda12x; platform_system == "Windows" and extra == "gpu"
47
- Requires-Dist: cupy; platform_system == "Darwin" and extra == "gpu"
48
35
 
49
36
  NetTracer3D is a python package developed for both 2D and 3D analysis of microscopic images in the .tif file format. It supports generation of 3D networks showing the relationships between objects (or nodes) in three dimensional space, either based on their own proximity or connectivity via connecting objects such as nerves or blood vessels. In addition to these functionalities are several advanced 3D data processing algorithms, such as labeling of branched structures or abstraction of branched structures into networks. Note that nettracer3d uses segmented data, which can be segmented from other softwares such as ImageJ and imported into NetTracer3D, although it does offer its own segmentation via intensity and volumetric thresholding, or random forest machine learning segmentation. NetTracer3D currently has a fully functional GUI. To use the GUI, after installing the nettracer3d package via pip, enter the command 'nettracer3d' in your command prompt:
50
37
 
@@ -0,0 +1,24 @@
1
+ numpy==1.26.4
2
+ scipy
3
+ scikit-image
4
+ Pillow
5
+ matplotlib
6
+ networkx
7
+ opencv-python-headless
8
+ openpyxl
9
+ pandas
10
+ napari
11
+ python-louvain
12
+ tifffile
13
+ qtrangeslider
14
+ PyQt6
15
+ scikit-learn
16
+
17
+ [CUDA11]
18
+ cupy-cuda11x
19
+
20
+ [CUDA12]
21
+ cupy-cuda12x
22
+
23
+ [cupy]
24
+ cupy
@@ -1,44 +0,0 @@
1
- numpy==1.26.4
2
- scipy
3
- scikit-image
4
- Pillow
5
- matplotlib
6
- networkx
7
- opencv-python-headless
8
- openpyxl
9
- pandas
10
- napari
11
- python-louvain
12
- tifffile
13
- qtrangeslider
14
- PyQt6
15
- scikit-learn
16
-
17
- [CUDA11]
18
- cupy-cuda11x
19
- torch==2.2.0+cu118
20
- torchvision==0.17.0+cu118
21
- torchaudio==2.2.0+cu118
22
-
23
- [CUDA12]
24
- cupy-cuda12x
25
- torch==2.2.0+cu121
26
- torchvision==0.17.0+cu121
27
- torchaudio==2.2.0+cu121
28
-
29
- [GPU]
30
-
31
- [GPU:platform_system == "Darwin"]
32
- cupy
33
-
34
- [GPU:platform_system == "Linux" and platform_machine == "x86_64"]
35
- cupy-cuda11x
36
-
37
- [GPU:platform_system == "Windows"]
38
- cupy-cuda12x
39
-
40
- [cupy]
41
- cupy
42
- torch
43
- torchvision
44
- torchaudio
File without changes
File without changes
File without changes