swcgeom 0.17.2__py3-none-any.whl → 0.18.1__py3-none-any.whl
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.
Potentially problematic release.
This version of swcgeom might be problematic. Click here for more details.
- swcgeom/__init__.py +14 -0
- swcgeom/_version.py +2 -2
- swcgeom/analysis/__init__.py +15 -0
- swcgeom/analysis/feature_extractor.py +15 -0
- swcgeom/analysis/features.py +15 -0
- swcgeom/analysis/lmeasure.py +15 -0
- swcgeom/analysis/sholl.py +15 -0
- swcgeom/analysis/trunk.py +15 -0
- swcgeom/analysis/visualization.py +15 -0
- swcgeom/analysis/visualization3d.py +15 -0
- swcgeom/analysis/volume.py +15 -0
- swcgeom/core/__init__.py +15 -0
- swcgeom/core/branch.py +15 -0
- swcgeom/core/branch_tree.py +15 -0
- swcgeom/core/compartment.py +15 -0
- swcgeom/core/node.py +15 -0
- swcgeom/core/path.py +15 -0
- swcgeom/core/population.py +15 -0
- swcgeom/core/swc.py +15 -0
- swcgeom/core/swc_utils/__init__.py +15 -1
- swcgeom/core/swc_utils/assembler.py +15 -0
- swcgeom/core/swc_utils/base.py +15 -0
- swcgeom/core/swc_utils/checker.py +16 -1
- swcgeom/core/swc_utils/io.py +17 -1
- swcgeom/core/swc_utils/normalizer.py +16 -1
- swcgeom/core/swc_utils/subtree.py +15 -0
- swcgeom/core/tree.py +15 -0
- swcgeom/core/tree_utils.py +15 -0
- swcgeom/core/tree_utils_impl.py +15 -0
- swcgeom/images/__init__.py +15 -0
- swcgeom/images/augmentation.py +15 -0
- swcgeom/images/contrast.py +15 -0
- swcgeom/images/folder.py +15 -0
- swcgeom/images/io.py +16 -1
- swcgeom/transforms/__init__.py +16 -0
- swcgeom/transforms/base.py +17 -2
- swcgeom/transforms/branch.py +74 -8
- swcgeom/transforms/branch_tree.py +82 -0
- swcgeom/transforms/geometry.py +22 -7
- swcgeom/transforms/image_preprocess.py +15 -0
- swcgeom/transforms/image_stack.py +16 -1
- swcgeom/transforms/images.py +15 -0
- swcgeom/transforms/mst.py +15 -0
- swcgeom/transforms/neurolucida_asc.py +16 -1
- swcgeom/transforms/path.py +15 -0
- swcgeom/transforms/population.py +15 -0
- swcgeom/transforms/tree.py +46 -5
- swcgeom/transforms/tree_assembler.py +19 -4
- swcgeom/utils/__init__.py +15 -0
- swcgeom/utils/debug.py +15 -0
- swcgeom/utils/download.py +15 -0
- swcgeom/utils/dsu.py +15 -0
- swcgeom/utils/ellipse.py +15 -0
- swcgeom/utils/file.py +15 -0
- swcgeom/utils/neuromorpho.py +18 -7
- swcgeom/utils/numpy_helper.py +15 -0
- swcgeom/utils/plotter_2d.py +15 -0
- swcgeom/utils/plotter_3d.py +18 -1
- swcgeom/utils/renderer.py +15 -0
- swcgeom/utils/sdf.py +15 -0
- swcgeom/utils/solid_geometry.py +15 -0
- swcgeom/utils/transforms.py +15 -0
- swcgeom/utils/volumetric_object.py +15 -0
- {swcgeom-0.17.2.dist-info → swcgeom-0.18.1.dist-info}/LICENSE +1 -1
- {swcgeom-0.17.2.dist-info → swcgeom-0.18.1.dist-info}/METADATA +9 -5
- swcgeom-0.18.1.dist-info/RECORD +68 -0
- swcgeom-0.17.2.dist-info/RECORD +0 -67
- {swcgeom-0.17.2.dist-info → swcgeom-0.18.1.dist-info}/WHEEL +0 -0
- {swcgeom-0.17.2.dist-info → swcgeom-0.18.1.dist-info}/top_level.txt +0 -0
swcgeom/utils/__init__.py
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# Copyright 2022-2025 Zexin Yuan
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
"""Utils."""
|
|
2
17
|
|
|
3
18
|
from swcgeom.utils.debug import *
|
swcgeom/utils/debug.py
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# Copyright 2022-2025 Zexin Yuan
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
"""Debug helpers"""
|
|
2
17
|
|
|
3
18
|
import time
|
swcgeom/utils/download.py
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# Copyright 2022-2025 Zexin Yuan
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
"""Download helpers.
|
|
2
17
|
|
|
3
18
|
Notes
|
swcgeom/utils/dsu.py
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# Copyright 2022-2025 Zexin Yuan
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
"""Disjoint Set Union Impl."""
|
|
2
17
|
|
|
3
18
|
__all__ = ["DisjointSetUnion"]
|
swcgeom/utils/ellipse.py
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# Copyright 2022-2025 Zexin Yuan
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
"""Finds the Minimum Volume Enclosing Ellipsoid."""
|
|
2
17
|
|
|
3
18
|
# pylint: disable=invalid-name
|
swcgeom/utils/file.py
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# Copyright 2022-2025 Zexin Yuan
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
"""File related utils.
|
|
2
17
|
|
|
3
18
|
Notes
|
swcgeom/utils/neuromorpho.py
CHANGED
|
@@ -1,9 +1,24 @@
|
|
|
1
|
+
# Copyright 2022-2025 Zexin Yuan
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
"""NeuroMorpho.org.
|
|
2
17
|
|
|
3
18
|
Examples
|
|
4
19
|
--------
|
|
5
20
|
|
|
6
|
-
Metadata:
|
|
21
|
+
Metadata:
|
|
7
22
|
|
|
8
23
|
```json
|
|
9
24
|
{
|
|
@@ -287,13 +302,9 @@ class NeuroMorpho:
|
|
|
287
302
|
where = where or (lambda _: True)
|
|
288
303
|
if isinstance(group_by, str):
|
|
289
304
|
key = group_by
|
|
290
|
-
group_by = lambda v: v[
|
|
291
|
-
key
|
|
292
|
-
] # pylint: disable=unnecessary-lambda-assignment
|
|
305
|
+
group_by = lambda v: v[key] # pylint: disable=unnecessary-lambda-assignment
|
|
293
306
|
elif group_by is None:
|
|
294
|
-
group_by =
|
|
295
|
-
lambda _: None
|
|
296
|
-
) # pylint: disable=unnecessary-lambda-assignment
|
|
307
|
+
group_by = lambda _: None # pylint: disable=unnecessary-lambda-assignment
|
|
297
308
|
items = []
|
|
298
309
|
for k, v in tx_m.cursor():
|
|
299
310
|
metadata = json.loads(v)
|
swcgeom/utils/numpy_helper.py
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# Copyright 2022-2025 Zexin Yuan
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
"""Numpy related utils."""
|
|
2
17
|
|
|
3
18
|
from contextlib import contextmanager
|
swcgeom/utils/plotter_2d.py
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# Copyright 2022-2025 Zexin Yuan
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
"""2D Plotting utils."""
|
|
2
17
|
|
|
3
18
|
from typing import Optional
|
swcgeom/utils/plotter_3d.py
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# Copyright 2022-2025 Zexin Yuan
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
"""3D Plotting utils."""
|
|
2
17
|
|
|
3
18
|
import numpy as np
|
|
@@ -27,5 +42,7 @@ def draw_lines_3d(
|
|
|
27
42
|
Forwarded to `~mpl_toolkits.mplot3d.art3d.Line3DCollection`.
|
|
28
43
|
"""
|
|
29
44
|
|
|
30
|
-
line_collection = Line3DCollection(
|
|
45
|
+
line_collection = Line3DCollection(
|
|
46
|
+
lines, joinstyle=joinstyle, capstyle=capstyle, **kwargs
|
|
47
|
+
) # type: ignore
|
|
31
48
|
return ax.add_collection3d(line_collection)
|
swcgeom/utils/renderer.py
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# Copyright 2022-2025 Zexin Yuan
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
"""Rendering related utils."""
|
|
2
17
|
|
|
3
18
|
from functools import cached_property
|
swcgeom/utils/sdf.py
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# Copyright 2022-2025 Zexin Yuan
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
"""Signed distance functions.
|
|
2
17
|
|
|
3
18
|
Refs: https://iquilezles.org/articles/distfunctions/
|
swcgeom/utils/solid_geometry.py
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# Copyright 2022-2025 Zexin Yuan
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
"""Solid Geometry."""
|
|
2
17
|
|
|
3
18
|
import numpy as np
|
swcgeom/utils/transforms.py
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# Copyright 2022-2025 Zexin Yuan
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
"""3D geometry transformations."""
|
|
2
17
|
|
|
3
18
|
import numpy as np
|
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# Copyright 2022-2025 Zexin Yuan
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
"""Volumetric object.
|
|
2
17
|
|
|
3
18
|
This library implements the calculation of volumes for any shape
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
|
187
187
|
identification within third-party archives.
|
|
188
188
|
|
|
189
|
-
Copyright [
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
190
|
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
192
|
you may not use this file except in compliance with the License.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: swcgeom
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.18.1
|
|
4
4
|
Summary: Neuron geometry library for swc format
|
|
5
5
|
Author-email: yzx9 <yuan.zx@outlook.com>
|
|
6
6
|
License: Apache-2.0
|
|
@@ -13,7 +13,7 @@ Requires-Dist: imagecodecs>=2023.3.16
|
|
|
13
13
|
Requires-Dist: matplotlib>=3.5.2
|
|
14
14
|
Requires-Dist: numpy>=1.22.3
|
|
15
15
|
Requires-Dist: pandas>=1.4.2
|
|
16
|
-
Requires-Dist: pynrrd>=1.
|
|
16
|
+
Requires-Dist: pynrrd>=1.1.0
|
|
17
17
|
Requires-Dist: scipy>=1.9.1
|
|
18
18
|
Requires-Dist: sdflit>=0.2.1
|
|
19
19
|
Requires-Dist: seaborn>=0.12.0
|
|
@@ -56,16 +56,20 @@ pip install build
|
|
|
56
56
|
pip install --editable .
|
|
57
57
|
```
|
|
58
58
|
|
|
59
|
-
Static analysis don't support import hook used in editable install for
|
|
59
|
+
Static analysis don't support import hook used in editable install for
|
|
60
|
+
[PEP660](https://peps.python.org/pep-0660/) since upgrade to setuptools v64+,
|
|
61
|
+
detail information at [setuptools#3518](https://github.com/pypa/setuptools/issues/3518),
|
|
62
|
+
a workaround for vscode with pylance:
|
|
60
63
|
|
|
61
64
|
```json
|
|
62
65
|
{
|
|
63
|
-
|
|
66
|
+
"python.analysis.extraPaths": ["/path/to/this/project"]
|
|
64
67
|
}
|
|
65
68
|
```
|
|
66
69
|
|
|
67
70
|
## LICENSE
|
|
68
71
|
|
|
69
|
-
This work is licensed under a
|
|
72
|
+
This work is licensed under a
|
|
73
|
+
<a rel="license" href="https://www.apache.org/licenses/">Apache-2.0</a>.
|
|
70
74
|
|
|
71
75
|
Copyright (c) 2022-present, Zexin Yuan
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
swcgeom/__init__.py,sha256=i9vi8J65kOj8z_gkGkDTufHn28zNbv6panIr9AuNNoc,845
|
|
2
|
+
swcgeom/_version.py,sha256=WKuH__LVaZHj35m7SuPDdqOuUScbj9XEwpPI5Tns-Xw,413
|
|
3
|
+
swcgeom/analysis/__init__.py,sha256=ZCxLqk5aA_96C5281RristqpEp3mnKyDcPOFom2d8iU,861
|
|
4
|
+
swcgeom/analysis/feature_extractor.py,sha256=8hmwwWCZ8c_XcnmyY--vRygo-OAovIoMuVTHnixX8KA,14855
|
|
5
|
+
swcgeom/analysis/features.py,sha256=NnFRUsMO7mPoBNLQ_kwSWHSfaV1BCOYTZz6VuG2Cfi8,6905
|
|
6
|
+
swcgeom/analysis/lmeasure.py,sha256=RLhRIo3VOQFqisBDetP120SntWSTE2rJ-vL5l-QGT40,28688
|
|
7
|
+
swcgeom/analysis/sholl.py,sha256=uGElY5hXILON8uHX9phGwFeKMjWCtA1GTeoyKStkSPE,7203
|
|
8
|
+
swcgeom/analysis/trunk.py,sha256=f6oH2Xlpn76JjKNsC0DKFsnYGn4FP4YRucCeyUaGgjg,6147
|
|
9
|
+
swcgeom/analysis/visualization.py,sha256=dioNW7Y596xhUPySkr-gbcCzLFm4PPsizKAjEXgAdyI,6216
|
|
10
|
+
swcgeom/analysis/visualization3d.py,sha256=OIUEtxPZpwK8eDEuy8_ezh5x2oQishQ3-aj-dGselAY,3094
|
|
11
|
+
swcgeom/analysis/volume.py,sha256=KLEqE5OWKckdw2qsI8Ugmxi-_jePnE9N9ZN6QFC07y8,5197
|
|
12
|
+
swcgeom/core/__init__.py,sha256=RPx9camQEOnI1WZSxfT8Kwb3fxMtg7yPJERvyr_nDqo,1026
|
|
13
|
+
swcgeom/core/branch.py,sha256=xu5J12FjxXSNL3Q_Uiy5qLlMozfcdnkIDO-XyDB_CYg,4764
|
|
14
|
+
swcgeom/core/branch_tree.py,sha256=jFDKkBgaTCT6C4ZsGdihxBp3xC2k9v6wxE43UGW2AuY,2424
|
|
15
|
+
swcgeom/core/compartment.py,sha256=neoM4nyZxPnaHDnxr-T5xItrf6gqctbo8dOawlFQRlM,3850
|
|
16
|
+
swcgeom/core/node.py,sha256=ZVhAQeadPNVpVd8LAVF5i7DWkGsjsigrUdMIUDUp8BY,4376
|
|
17
|
+
swcgeom/core/path.py,sha256=_j9GP7fSaDUeUeFGXPaWDyq5BcQURzTCCh9iuQKiYWM,5065
|
|
18
|
+
swcgeom/core/population.py,sha256=k-sIaYC-m2S82h-rJM0iocdFpQDKuEBuaw6_WNgI_0s,11039
|
|
19
|
+
swcgeom/core/swc.py,sha256=SqJdj-auOBuxOoRxg33DFcigIx8_BuWfeHyWYBQY7xk,7384
|
|
20
|
+
swcgeom/core/tree.py,sha256=Hq4KOFvEWcFqFvGC3D-1f_WKRu6p6P_hfJT5vOVGKXY,13150
|
|
21
|
+
swcgeom/core/tree_utils.py,sha256=2cg3HBn7-6S_J64z9F12CLGVDarpn5epCk3icVWtgEY,8192
|
|
22
|
+
swcgeom/core/tree_utils_impl.py,sha256=1G1qZA7kwWifol8h5cBsFuwh6YA0ZTfpzG5brGwBFs0,2178
|
|
23
|
+
swcgeom/core/swc_utils/__init__.py,sha256=KFxqtbIzpAum9GMPUFTXD8i7IlypckbnUSx3rKPNcb0,1155
|
|
24
|
+
swcgeom/core/swc_utils/assembler.py,sha256=lrW0vWFSpvL3PGjA80mCSR9XH3RHX2wLyZ1v4Tux4Gw,1470
|
|
25
|
+
swcgeom/core/swc_utils/base.py,sha256=bjH8AOclIAXGecUVxDOrk9jD7NAq1OdkvXgIQLj6UP0,5312
|
|
26
|
+
swcgeom/core/swc_utils/checker.py,sha256=xbzUjHPR5sMHRCA1f9MAd_4xUvyb5NRsJWSB7cPXSdw,3182
|
|
27
|
+
swcgeom/core/swc_utils/io.py,sha256=Btyg0w5VsYL3LFBF59ADsWNbD3EthR4pKEBpThaJDDM,7047
|
|
28
|
+
swcgeom/core/swc_utils/normalizer.py,sha256=egYdZAex8h1SninrWkkKpU9Tu9rmB9uaHwa3u4kasO0,5673
|
|
29
|
+
swcgeom/core/swc_utils/subtree.py,sha256=Jgk39eguBIxhrz3AL1X6pzLfo0tXovNes51D7U4Qw9k,2569
|
|
30
|
+
swcgeom/images/__init__.py,sha256=NAt1vRlCvNWODR_cwedfWxRgnpLdb85tBwFJY3a457k,677
|
|
31
|
+
swcgeom/images/augmentation.py,sha256=6YuQpuWaarc_bD0Pjz42eFreVjhA2qmeUEK84RBcc_g,4748
|
|
32
|
+
swcgeom/images/contrast.py,sha256=f5EqJJ4tGcG46dm9pMeQm_cM1fYcIXC6qYjcOFxThTc,2741
|
|
33
|
+
swcgeom/images/folder.py,sha256=-WpAvCBZ5qYfFZTWI1e-O7jAGLjm_PyZWV91fegP45E,7025
|
|
34
|
+
swcgeom/images/io.py,sha256=dgu69iqb_Bkk8guLt5TYSOz-lG_WemEOFrRmoZsQTg8,21137
|
|
35
|
+
swcgeom/transforms/__init__.py,sha256=z8e2YmMJpQaYk6KIg3sI989exl_eHeeiNT-1gMTwgVY,1188
|
|
36
|
+
swcgeom/transforms/base.py,sha256=l5DEZjZhjH23Axg8ozJTFzSmNNwIlTfm0XxAOIAQtlE,4696
|
|
37
|
+
swcgeom/transforms/branch.py,sha256=L8O7CwLdY-q_b53vrKfA_nlePh5lKx2kA-foVtQd6sQ,7861
|
|
38
|
+
swcgeom/transforms/branch_tree.py,sha256=i2w16ny70oWbJhq5mHX7wgEVGol1AYKB3P-N5Kh3z2I,2820
|
|
39
|
+
swcgeom/transforms/geometry.py,sha256=xA9RN1oWRV0S1OVC_vxGZOq8CjGLERnlR5vM4_wvUG8,8008
|
|
40
|
+
swcgeom/transforms/image_preprocess.py,sha256=lT5ceaE9IzJjq6vIFh0p1YzsyBYAtqz_ElqErvZvDdE,4243
|
|
41
|
+
swcgeom/transforms/image_stack.py,sha256=Zc9p5MGt8zdkla-RnKdsF64NLgS7cfK9j2qG4ggiSgI,6720
|
|
42
|
+
swcgeom/transforms/images.py,sha256=bPJwtwIcHVECHV0qQBVWRFzTWLKEf31V4TiRgjFrGn8,6139
|
|
43
|
+
swcgeom/transforms/mst.py,sha256=spUuXjglCBnZmR6mIyCBJJGmQbfpx7hb1nndT3_iUG4,6832
|
|
44
|
+
swcgeom/transforms/neurolucida_asc.py,sha256=0WyM9B5qpJ5hjVGKpO8atWpaUhJdLQ0lKMhcJkuOsfM,14699
|
|
45
|
+
swcgeom/transforms/path.py,sha256=SqBPYvCnDc1yd8UCBwyelAXnduNAvJ16pWo9lMoZVI0,1670
|
|
46
|
+
swcgeom/transforms/population.py,sha256=kayuwNs8jWTrHZ4sqoH9HUcLqR0OybJbGtb7HvpFIdw,1389
|
|
47
|
+
swcgeom/transforms/tree.py,sha256=qlYISDuT7DlEQ2uaa1Y-vqb2rbs9JHr9Bays546XuCI,8152
|
|
48
|
+
swcgeom/transforms/tree_assembler.py,sha256=rWm7D7tAhk9UkX1PL_QfXw2-98xlI7cF3IsIyW7eOzQ,5743
|
|
49
|
+
swcgeom/utils/__init__.py,sha256=PxT8okoPYJ-kjKqXZDFaDB2bmGjRdS73Y6GJcZ_0-tc,1047
|
|
50
|
+
swcgeom/utils/debug.py,sha256=ZOYLfj32YDjSU1tJrtThWF2SROwYhG2z7j4Fq0q4Dsw,1046
|
|
51
|
+
swcgeom/utils/download.py,sha256=VNJCsXty3NrwPv9CzyA_OkHsEQj4LArkoAuPmW-NX6c,4237
|
|
52
|
+
swcgeom/utils/dsu.py,sha256=tU_hBjSFBXiraJphB_qQ7Rt1pKNFUIbh0kvU_zJ1UaI,2016
|
|
53
|
+
swcgeom/utils/ellipse.py,sha256=o8CZmEhJIy2bejDX2nr92H5vootuLoIkk-sSTG19cAo,3815
|
|
54
|
+
swcgeom/utils/file.py,sha256=6P_jSfpUPulJ2PSHGr-maEZotLvM35egEmH4RRO022Y,3096
|
|
55
|
+
swcgeom/utils/neuromorpho.py,sha256=AE3wlDckLFYI9MuQv4XlA0LYMLpGUm8OQLNnym-DQB4,19617
|
|
56
|
+
swcgeom/utils/numpy_helper.py,sha256=wsY8-4naAOMfKQ2O-dVRcblM2NrezhjsUEfUzT2holk,2006
|
|
57
|
+
swcgeom/utils/plotter_2d.py,sha256=ojhEUpMbP9-7XE64CNb4kVoUS6WoFrYlmqumbGr79go,4450
|
|
58
|
+
swcgeom/utils/plotter_3d.py,sha256=6IU_Oyls5chq6ol30R4zp85oK_31yHB6vVp09D6pYGA,1458
|
|
59
|
+
swcgeom/utils/renderer.py,sha256=aDp2HZRUe9GDNdslewLKh6OCTKfz8G_6c4AmK14EajQ,4801
|
|
60
|
+
swcgeom/utils/sdf.py,sha256=C8uH9R2qMYeXgy1icHcaGQnjqQbU-0d6gWNw7tfge10,11156
|
|
61
|
+
swcgeom/utils/solid_geometry.py,sha256=2c8MNCfvkF7HAhmLPQXvHF8uexoNJBeFh6Qa9n6M8CQ,2980
|
|
62
|
+
swcgeom/utils/transforms.py,sha256=UKGeCv8O109mcBk1_opnwABLYVpmfF8sT_f5Mx5APSM,7538
|
|
63
|
+
swcgeom/utils/volumetric_object.py,sha256=Y_rEAzeCozJWwXicerwRElwotTgQwHlz9TChzsG9J1I,15683
|
|
64
|
+
swcgeom-0.18.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
65
|
+
swcgeom-0.18.1.dist-info/METADATA,sha256=6Kzd9SDFrv7wAn79afVHQfq2vu91715PzmFIwfO5IKk,2307
|
|
66
|
+
swcgeom-0.18.1.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
67
|
+
swcgeom-0.18.1.dist-info/top_level.txt,sha256=hmLyUXWS61Gxl07haswFEKKefYPBVJYlUlol8ghNkjY,8
|
|
68
|
+
swcgeom-0.18.1.dist-info/RECORD,,
|
swcgeom-0.17.2.dist-info/RECORD
DELETED
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
swcgeom/__init__.py,sha256=z88Zwcjv-ii7c7dYd9QPg9XrUVorQjtrgGbQCsEnQhc,265
|
|
2
|
-
swcgeom/_version.py,sha256=9PqbWPkwwMgdNmE4GP1v5LyzvjNYATMHB-uIEy0c_aI,413
|
|
3
|
-
swcgeom/analysis/__init__.py,sha256=NurxIAyjsxjYv9rbzNf65y2sv-iBcGTmLap645hYq9Y,280
|
|
4
|
-
swcgeom/analysis/feature_extractor.py,sha256=CrOQ3hhjtuUkkYD3piFwyGnYEwd_YezJSMwBv3mPcFQ,14274
|
|
5
|
-
swcgeom/analysis/features.py,sha256=7RKLVxQPiEcwjoGhM1QO84S5Kw25mMyyvPzqA5Yy2o4,6324
|
|
6
|
-
swcgeom/analysis/lmeasure.py,sha256=sjFaFM4_HXSE7zgDrn3wFz9i2ySE6CtG6F4EqxxhOCU,28107
|
|
7
|
-
swcgeom/analysis/sholl.py,sha256=uTse3sCCrhpCIY6GNJ0giDp7qCHCImTtWbJE7qY4D-Y,6622
|
|
8
|
-
swcgeom/analysis/trunk.py,sha256=fMHnLDxm2jP_bKBM8ATbTQvBVS5G92ITbgMAm1pIK20,5566
|
|
9
|
-
swcgeom/analysis/visualization.py,sha256=C18J45btqM8kikXyIEZODk4PYgAK1-9pN2Hf6j3QCzs,5635
|
|
10
|
-
swcgeom/analysis/visualization3d.py,sha256=CTUcWBa2cMyDdKimMEtDBmbVzYf3-cTp-6UskPP6Erg,2513
|
|
11
|
-
swcgeom/analysis/volume.py,sha256=y-GVlK8gB7JPS4DpBq1jIjl9Wd-0zryZ9qo8zHGE6_k,4616
|
|
12
|
-
swcgeom/core/__init__.py,sha256=BEfFBnpaKnJOBID5G5kpGcL7_E1Fj0eZZDITDVwvmRY,445
|
|
13
|
-
swcgeom/core/branch.py,sha256=Jwv30pF5bfdZ7B9pl1yP2IYGczdzQtdHKYT2qNmxigE,4183
|
|
14
|
-
swcgeom/core/branch_tree.py,sha256=D8Yb4sz2TniQyeUIqoYW78ZBxLFXyumPuhgmQdff0yI,1843
|
|
15
|
-
swcgeom/core/compartment.py,sha256=5ZLlbsgHouwiRxtl9xLKD02IvsyjlvmIyaXG7IySAZ0,3269
|
|
16
|
-
swcgeom/core/node.py,sha256=pBk8NvKWX0OMJ8Mk9Z9I-MWqAoNEnnklnFi8yhOHiE8,3795
|
|
17
|
-
swcgeom/core/path.py,sha256=Uf6N-vFGut1UxTZ7iiX4btZiWpJCWSRaPbzkVKgXCSo,4484
|
|
18
|
-
swcgeom/core/population.py,sha256=U0r652W-GMEX7UkUxlqUa-oTcSgmYuKRlkoskSonAC4,10458
|
|
19
|
-
swcgeom/core/swc.py,sha256=sq9-Fg5-d8Yxc2-ITu__LzN5k1hxQNkVTdmee1gpGME,6803
|
|
20
|
-
swcgeom/core/tree.py,sha256=VcD0qWZNZW04yqF_mjSBXbZRunTp4jLcvYdL7zfX4ZM,12569
|
|
21
|
-
swcgeom/core/tree_utils.py,sha256=bDz9AvYdv0y_4j1knEuudaVA2tOvevaeRaF7_6smxxs,7611
|
|
22
|
-
swcgeom/core/tree_utils_impl.py,sha256=MFCrd34VZE1oSJjt9xo5L7Oyf5-ERS8ifW8zUw6isNE,1597
|
|
23
|
-
swcgeom/core/swc_utils/__init__.py,sha256=qghRxjtzvq5KKfN4HhvLpZNsGPfZQu-Jj2x62_5-TbQ,575
|
|
24
|
-
swcgeom/core/swc_utils/assembler.py,sha256=XtjEWz_iAOMpQzLnErCiCjbnqrbB7JA4t2-LLi2R4rQ,889
|
|
25
|
-
swcgeom/core/swc_utils/base.py,sha256=CJWQioScS1L17KIJlpZMDgu68ZTCF_82nJeg25z7SRI,4731
|
|
26
|
-
swcgeom/core/swc_utils/checker.py,sha256=9LfKxg6-OfdfFw7JKs6Zf7dRZ8CbBykkv35U-ZyK2wk,2602
|
|
27
|
-
swcgeom/core/swc_utils/io.py,sha256=xA5zvpM4gccsodKCruD-XInlC3NfvA1SgEDnqI5cjY8,6458
|
|
28
|
-
swcgeom/core/swc_utils/normalizer.py,sha256=BN4UOatAo869L1EqXM8IGz0oy0bXPu9KJfZwCGz_PkM,5097
|
|
29
|
-
swcgeom/core/swc_utils/subtree.py,sha256=iX0K90d4iEDdLx6NZ-4HJ-kY_NPE4XkcKn8xwXnYhQo,1988
|
|
30
|
-
swcgeom/images/__init__.py,sha256=QBP1ZGGo2nWAcV7Krz-vbvW_jN4ChqXrrpoScXcUURs,96
|
|
31
|
-
swcgeom/images/augmentation.py,sha256=DfSaEs57aY50O6IKDNupmLI8fHyOvNVmH8uXtdd45iQ,4167
|
|
32
|
-
swcgeom/images/contrast.py,sha256=ViZVW6XI-l2sLVTODLRLtHinv_7lVgtH-xZmaw1nQLw,2160
|
|
33
|
-
swcgeom/images/folder.py,sha256=BCqFmMQlUYtnaa9GvN10QR_0kEkQVwIgPJa3Sw0nxqo,6444
|
|
34
|
-
swcgeom/images/io.py,sha256=gGzzdoUQ9GONfwkTIAaYrZRSUIOHVAAhLlLZ4sTkGjg,20555
|
|
35
|
-
swcgeom/transforms/__init__.py,sha256=1rr4X--qY_lBi7l7_NHyvvkoWpQOQOqkioRT8I20olI,562
|
|
36
|
-
swcgeom/transforms/base.py,sha256=gN5Iqi-OHkYrsjllSOdxI6Yzav3jJGoi6kUPy-38FAs,4101
|
|
37
|
-
swcgeom/transforms/branch.py,sha256=R0rVti--u70IiUKyHSx6MsDYJyy6zSCf18Uia2Cmh28,5410
|
|
38
|
-
swcgeom/transforms/geometry.py,sha256=XR73fO_8T7otUFIllqKOWW0OnrsXBc7yA01oDT99yMc,7385
|
|
39
|
-
swcgeom/transforms/image_preprocess.py,sha256=ZVPpRoO69dmLF5K7CWsGaQJXB2G5gxdvA-FcDmfz4yQ,3662
|
|
40
|
-
swcgeom/transforms/image_stack.py,sha256=iWtpL0FOfIZlE--D8qAQCScCHowCVzbTPD_4bxnNFiI,6132
|
|
41
|
-
swcgeom/transforms/images.py,sha256=5kMq7VsKbBwlgVQOHP5Fyd9zWPjc1tlXis4jC4c-MB4,5558
|
|
42
|
-
swcgeom/transforms/mst.py,sha256=Oc_HnaXjg5EXC7ZnOPneHX0-rXizDAEUcjq63GTj-ac,6251
|
|
43
|
-
swcgeom/transforms/neurolucida_asc.py,sha256=zxXZ_LltO1BTILWGU9yZKoXbMPW6ldXpZZryYf3X6Jw,14120
|
|
44
|
-
swcgeom/transforms/path.py,sha256=Gk2iunGQMX7vE83bdo8xoDO-KAT1Vvep0iZs7oFLzFQ,1089
|
|
45
|
-
swcgeom/transforms/population.py,sha256=UHLjqZE1gO72p_nFHD-FSM6EFUEyfEm4v3KxHqk0O1M,808
|
|
46
|
-
swcgeom/transforms/tree.py,sha256=aGTrHlNnQfc8iKOFa_1KgqbNa0zA2Y6YluPNLYtPbxM,6650
|
|
47
|
-
swcgeom/transforms/tree_assembler.py,sha256=juqU3moMdKhlr09fsj6FYfZV7lCjgN3bALU19trPI50,5135
|
|
48
|
-
swcgeom/utils/__init__.py,sha256=LXL0wqq6-ggNweZrftp2lrNHCmVJ6LHIto3DuwlYz3c,466
|
|
49
|
-
swcgeom/utils/debug.py,sha256=qay2qJpViLX82mzxdndxQFn-pi1vaEj9CbLGuGt8Y9k,465
|
|
50
|
-
swcgeom/utils/download.py,sha256=nJ9_BXXyMdQljoZFHsC9eaina357ZuzcwITrO7azl4Y,3656
|
|
51
|
-
swcgeom/utils/dsu.py,sha256=3aCbtpnl_D0OXnowTS8-kuwnCS4BKBYL5ECiFQ1fUW8,1435
|
|
52
|
-
swcgeom/utils/ellipse.py,sha256=hmoaPvff1QiW6Z_QvpKgXEHYRDzjGp6eUpkOOOJStF0,3234
|
|
53
|
-
swcgeom/utils/file.py,sha256=1hchQDsPgn-i-Vz5OQtcogxav_ajCQ_OaEZCLmqczRg,2515
|
|
54
|
-
swcgeom/utils/neuromorpho.py,sha256=HfZx3pqtQrZHklTJhpgaIROUY5ysJTPhYHbvbDxx_Ws,19115
|
|
55
|
-
swcgeom/utils/numpy_helper.py,sha256=xuvXpZgP-ZeuwTvPFD3DIxwJ5BK4fMCU7k5_5fUHaWE,1425
|
|
56
|
-
swcgeom/utils/plotter_2d.py,sha256=743BPwx4hpxNsIdUmjOnL6iuln4-pf2xyuGbQFYIts0,3869
|
|
57
|
-
swcgeom/utils/plotter_3d.py,sha256=EPB1BPyhJZD5IMarJrV-fvpclu1XjAJNZTDZCsUx7ZM,863
|
|
58
|
-
swcgeom/utils/renderer.py,sha256=3fjs9L_c6nJ1-pQzGT7meD0-XHZeKeW0WWqBfMx9c1s,4220
|
|
59
|
-
swcgeom/utils/sdf.py,sha256=D7RmbBV65ofMWLIEWiTvpBUflnZEsGIh-ncZCWqMun8,10575
|
|
60
|
-
swcgeom/utils/solid_geometry.py,sha256=Dn8b4A6TnM--EMoMVDPBSuOA_nworvbZL9gbm6EGMTY,2399
|
|
61
|
-
swcgeom/utils/transforms.py,sha256=rzxuQFBKKRfLNEyYv9h7TfiOyRAouq-J0ZseKq71WYs,6957
|
|
62
|
-
swcgeom/utils/volumetric_object.py,sha256=213DCz-d99ZwEZJv6SLKb0Nkj9uo5oOBnPsG50Miwz8,15102
|
|
63
|
-
swcgeom-0.17.2.dist-info/LICENSE,sha256=JPtohhZ4XURqoKI0ZqnMYb7dobCOoZR_n5EpnaLTp3E,11344
|
|
64
|
-
swcgeom-0.17.2.dist-info/METADATA,sha256=bgTVJ7LDFnrx2mpT-59qT8m6c2C4sgdVoQIcFS4br38,2308
|
|
65
|
-
swcgeom-0.17.2.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
66
|
-
swcgeom-0.17.2.dist-info/top_level.txt,sha256=hmLyUXWS61Gxl07haswFEKKefYPBVJYlUlol8ghNkjY,8
|
|
67
|
-
swcgeom-0.17.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|