nettracer3d 0.7.0__tar.gz → 0.7.1__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.
- {nettracer3d-0.7.0/src/nettracer3d.egg-info → nettracer3d-0.7.1}/PKG-INFO +19 -19
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/pyproject.toml +19 -19
- {nettracer3d-0.7.0 → nettracer3d-0.7.1/src/nettracer3d.egg-info}/PKG-INFO +19 -19
- nettracer3d-0.7.1/src/nettracer3d.egg-info/requires.txt +26 -0
- nettracer3d-0.7.0/src/nettracer3d.egg-info/requires.txt +0 -26
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/LICENSE +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/README.md +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/setup.cfg +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/src/nettracer3d/__init__.py +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/src/nettracer3d/community_extractor.py +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/src/nettracer3d/modularity.py +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/src/nettracer3d/morphology.py +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/src/nettracer3d/nettracer.py +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/src/nettracer3d/nettracer_gui.py +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/src/nettracer3d/network_analysis.py +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/src/nettracer3d/network_draw.py +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/src/nettracer3d/node_draw.py +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/src/nettracer3d/proximity.py +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/src/nettracer3d/run.py +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/src/nettracer3d/segmenter.py +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/src/nettracer3d/simple_network.py +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/src/nettracer3d/smart_dilate.py +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/src/nettracer3d.egg-info/SOURCES.txt +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/src/nettracer3d.egg-info/dependency_links.txt +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/src/nettracer3d.egg-info/entry_points.txt +0 -0
- {nettracer3d-0.7.0 → nettracer3d-0.7.1}/src/nettracer3d.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nettracer3d
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.1
|
|
4
4
|
Summary: Scripts for intializing and analyzing networks from segmentations of three dimensional images.
|
|
5
5
|
Author-email: Liam McLaughlin <liamm@wustl.edu>
|
|
6
6
|
Project-URL: Documentation, https://nettracer3d.readthedocs.io/en/latest/
|
|
@@ -9,26 +9,26 @@ Project-URL: Reference_Citation_For_Use, https://doi.org/10.1101/2024.07.29.6056
|
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
10
10
|
Classifier: License :: Other/Proprietary License
|
|
11
11
|
Classifier: Operating System :: OS Independent
|
|
12
|
-
Requires-Python:
|
|
12
|
+
Requires-Python: >=3.7
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
|
-
Requires-Dist: numpy
|
|
16
|
-
Requires-Dist: scipy
|
|
17
|
-
Requires-Dist: scikit-image
|
|
18
|
-
Requires-Dist: Pillow
|
|
19
|
-
Requires-Dist: matplotlib
|
|
20
|
-
Requires-Dist: networkx
|
|
21
|
-
Requires-Dist: opencv-python-headless
|
|
22
|
-
Requires-Dist: openpyxl
|
|
23
|
-
Requires-Dist: pandas
|
|
24
|
-
Requires-Dist: napari
|
|
25
|
-
Requires-Dist: python-louvain
|
|
26
|
-
Requires-Dist: tifffile
|
|
27
|
-
Requires-Dist: qtrangeslider
|
|
28
|
-
Requires-Dist: PyQt6
|
|
29
|
-
Requires-Dist: scikit-learn
|
|
30
|
-
Requires-Dist: nibabel
|
|
31
|
-
Requires-Dist: setuptools
|
|
15
|
+
Requires-Dist: numpy
|
|
16
|
+
Requires-Dist: scipy
|
|
17
|
+
Requires-Dist: scikit-image
|
|
18
|
+
Requires-Dist: Pillow
|
|
19
|
+
Requires-Dist: matplotlib
|
|
20
|
+
Requires-Dist: networkx
|
|
21
|
+
Requires-Dist: opencv-python-headless
|
|
22
|
+
Requires-Dist: openpyxl
|
|
23
|
+
Requires-Dist: pandas
|
|
24
|
+
Requires-Dist: napari
|
|
25
|
+
Requires-Dist: python-louvain
|
|
26
|
+
Requires-Dist: tifffile
|
|
27
|
+
Requires-Dist: qtrangeslider
|
|
28
|
+
Requires-Dist: PyQt6
|
|
29
|
+
Requires-Dist: scikit-learn
|
|
30
|
+
Requires-Dist: nibabel
|
|
31
|
+
Requires-Dist: setuptools
|
|
32
32
|
Provides-Extra: cuda11
|
|
33
33
|
Requires-Dist: cupy-cuda11x; extra == "cuda11"
|
|
34
34
|
Provides-Extra: cuda12
|
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "nettracer3d"
|
|
3
|
-
version = "0.7.
|
|
3
|
+
version = "0.7.1"
|
|
4
4
|
authors = [
|
|
5
5
|
{ name="Liam McLaughlin", email="liamm@wustl.edu" },
|
|
6
6
|
]
|
|
7
7
|
description = "Scripts for intializing and analyzing networks from segmentations of three dimensional images."
|
|
8
8
|
|
|
9
9
|
dependencies = [
|
|
10
|
-
"numpy
|
|
11
|
-
"scipy
|
|
12
|
-
"scikit-image
|
|
13
|
-
"Pillow
|
|
14
|
-
"matplotlib
|
|
15
|
-
"networkx
|
|
16
|
-
"opencv-python-headless
|
|
17
|
-
"openpyxl
|
|
18
|
-
"pandas
|
|
19
|
-
"napari
|
|
20
|
-
"python-louvain
|
|
21
|
-
"tifffile
|
|
22
|
-
"qtrangeslider
|
|
23
|
-
"PyQt6
|
|
24
|
-
"scikit-learn
|
|
25
|
-
"nibabel
|
|
26
|
-
"setuptools
|
|
10
|
+
"numpy",
|
|
11
|
+
"scipy",
|
|
12
|
+
"scikit-image",
|
|
13
|
+
"Pillow",
|
|
14
|
+
"matplotlib",
|
|
15
|
+
"networkx",
|
|
16
|
+
"opencv-python-headless",
|
|
17
|
+
"openpyxl",
|
|
18
|
+
"pandas",
|
|
19
|
+
"napari",
|
|
20
|
+
"python-louvain",
|
|
21
|
+
"tifffile",
|
|
22
|
+
"qtrangeslider",
|
|
23
|
+
"PyQt6",
|
|
24
|
+
"scikit-learn",
|
|
25
|
+
"nibabel",
|
|
26
|
+
"setuptools"
|
|
27
27
|
]
|
|
28
28
|
|
|
29
29
|
readme = "README.md"
|
|
30
|
-
requires-python = "
|
|
30
|
+
requires-python = ">=3.7"
|
|
31
31
|
classifiers = [
|
|
32
32
|
"Programming Language :: Python :: 3",
|
|
33
33
|
"License :: Other/Proprietary License",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nettracer3d
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.1
|
|
4
4
|
Summary: Scripts for intializing and analyzing networks from segmentations of three dimensional images.
|
|
5
5
|
Author-email: Liam McLaughlin <liamm@wustl.edu>
|
|
6
6
|
Project-URL: Documentation, https://nettracer3d.readthedocs.io/en/latest/
|
|
@@ -9,26 +9,26 @@ Project-URL: Reference_Citation_For_Use, https://doi.org/10.1101/2024.07.29.6056
|
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
10
10
|
Classifier: License :: Other/Proprietary License
|
|
11
11
|
Classifier: Operating System :: OS Independent
|
|
12
|
-
Requires-Python:
|
|
12
|
+
Requires-Python: >=3.7
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
|
-
Requires-Dist: numpy
|
|
16
|
-
Requires-Dist: scipy
|
|
17
|
-
Requires-Dist: scikit-image
|
|
18
|
-
Requires-Dist: Pillow
|
|
19
|
-
Requires-Dist: matplotlib
|
|
20
|
-
Requires-Dist: networkx
|
|
21
|
-
Requires-Dist: opencv-python-headless
|
|
22
|
-
Requires-Dist: openpyxl
|
|
23
|
-
Requires-Dist: pandas
|
|
24
|
-
Requires-Dist: napari
|
|
25
|
-
Requires-Dist: python-louvain
|
|
26
|
-
Requires-Dist: tifffile
|
|
27
|
-
Requires-Dist: qtrangeslider
|
|
28
|
-
Requires-Dist: PyQt6
|
|
29
|
-
Requires-Dist: scikit-learn
|
|
30
|
-
Requires-Dist: nibabel
|
|
31
|
-
Requires-Dist: setuptools
|
|
15
|
+
Requires-Dist: numpy
|
|
16
|
+
Requires-Dist: scipy
|
|
17
|
+
Requires-Dist: scikit-image
|
|
18
|
+
Requires-Dist: Pillow
|
|
19
|
+
Requires-Dist: matplotlib
|
|
20
|
+
Requires-Dist: networkx
|
|
21
|
+
Requires-Dist: opencv-python-headless
|
|
22
|
+
Requires-Dist: openpyxl
|
|
23
|
+
Requires-Dist: pandas
|
|
24
|
+
Requires-Dist: napari
|
|
25
|
+
Requires-Dist: python-louvain
|
|
26
|
+
Requires-Dist: tifffile
|
|
27
|
+
Requires-Dist: qtrangeslider
|
|
28
|
+
Requires-Dist: PyQt6
|
|
29
|
+
Requires-Dist: scikit-learn
|
|
30
|
+
Requires-Dist: nibabel
|
|
31
|
+
Requires-Dist: setuptools
|
|
32
32
|
Provides-Extra: cuda11
|
|
33
33
|
Requires-Dist: cupy-cuda11x; extra == "cuda11"
|
|
34
34
|
Provides-Extra: cuda12
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
numpy
|
|
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
|
+
nibabel
|
|
17
|
+
setuptools
|
|
18
|
+
|
|
19
|
+
[CUDA11]
|
|
20
|
+
cupy-cuda11x
|
|
21
|
+
|
|
22
|
+
[CUDA12]
|
|
23
|
+
cupy-cuda12x
|
|
24
|
+
|
|
25
|
+
[cupy]
|
|
26
|
+
cupy
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
numpy==1.26.4
|
|
2
|
-
scipy==1.14.1
|
|
3
|
-
scikit-image==0.25.0
|
|
4
|
-
Pillow==11.1.0
|
|
5
|
-
matplotlib==3.9.2
|
|
6
|
-
networkx==3.2.1
|
|
7
|
-
opencv-python-headless==4.10.0.84
|
|
8
|
-
openpyxl==3.1.2
|
|
9
|
-
pandas==2.2.0
|
|
10
|
-
napari==0.5.5
|
|
11
|
-
python-louvain==0.16
|
|
12
|
-
tifffile==2023.7.18
|
|
13
|
-
qtrangeslider==0.1.5
|
|
14
|
-
PyQt6==6.8.0
|
|
15
|
-
scikit-learn==1.6.1
|
|
16
|
-
nibabel==5.2.0
|
|
17
|
-
setuptools>=65.0.0
|
|
18
|
-
|
|
19
|
-
[CUDA11]
|
|
20
|
-
cupy-cuda11x
|
|
21
|
-
|
|
22
|
-
[CUDA12]
|
|
23
|
-
cupy-cuda12x
|
|
24
|
-
|
|
25
|
-
[cupy]
|
|
26
|
-
cupy
|
|
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
|
|
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
|
|
File without changes
|