swcgeom 0.15.0__tar.gz → 0.16.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.
Potentially problematic release.
This version of swcgeom might be problematic. Click here for more details.
- swcgeom-0.16.0/.github/workflows/build.yml +38 -0
- swcgeom-0.16.0/.github/workflows/github-publish.yml +35 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/.github/workflows/pypi-publish.yml +12 -12
- {swcgeom-0.15.0 → swcgeom-0.16.0}/.github/workflows/test.yml +1 -1
- swcgeom-0.16.0/.vscode/settings.json +15 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/CHANGELOG.md +49 -0
- {swcgeom-0.15.0/swcgeom.egg-info → swcgeom-0.16.0}/PKG-INFO +3 -3
- {swcgeom-0.15.0 → swcgeom-0.16.0}/examples/pytorch/branch_dataset.py +1 -1
- {swcgeom-0.15.0 → swcgeom-0.16.0}/pyproject.toml +2 -2
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/_version.py +2 -2
- swcgeom-0.16.0/swcgeom/analysis/lmeasure.py +821 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/analysis/sholl.py +31 -2
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/core/__init__.py +4 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/core/branch.py +9 -4
- swcgeom-0.15.0/swcgeom/core/segment.py → swcgeom-0.16.0/swcgeom/core/compartment.py +14 -9
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/core/node.py +0 -8
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/core/path.py +21 -6
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/core/population.py +47 -7
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/core/swc_utils/assembler.py +12 -1
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/core/swc_utils/base.py +12 -5
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/core/swc_utils/checker.py +12 -2
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/core/tree.py +34 -37
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/core/tree_utils.py +4 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/images/augmentation.py +6 -1
- swcgeom-0.16.0/swcgeom/images/contrast.py +107 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/images/folder.py +71 -14
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/images/io.py +14 -4
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/transforms/__init__.py +2 -0
- swcgeom-0.16.0/swcgeom/transforms/image_preprocess.py +100 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/transforms/image_stack.py +1 -4
- swcgeom-0.16.0/swcgeom/transforms/images.py +102 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/transforms/mst.py +5 -5
- swcgeom-0.16.0/swcgeom/transforms/neurolucida_asc.py +495 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/transforms/tree.py +5 -1
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/utils/__init__.py +1 -0
- swcgeom-0.16.0/swcgeom/utils/neuromorpho.py +594 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/utils/numpy_helper.py +14 -4
- swcgeom-0.16.0/swcgeom/utils/plotter_2d.py +130 -0
- swcgeom-0.16.0/swcgeom/utils/renderer.py +133 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/utils/sdf.py +5 -1
- {swcgeom-0.15.0 → swcgeom-0.16.0/swcgeom.egg-info}/PKG-INFO +3 -3
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom.egg-info/SOURCES.txt +8 -1
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom.egg-info/requires.txt +2 -2
- swcgeom-0.16.0/tests/transforms/test_neurolucida_asc.py +150 -0
- swcgeom-0.16.0/tests/utils/test_numpy_helper.py +46 -0
- swcgeom-0.15.0/.github/workflows/build.yml +0 -38
- swcgeom-0.15.0/.github/workflows/github-publish.yml +0 -35
- swcgeom-0.15.0/.vscode/settings.json +0 -20
- swcgeom-0.15.0/swcgeom/transforms/images.py +0 -32
- swcgeom-0.15.0/swcgeom/utils/neuromorpho.py +0 -469
- swcgeom-0.15.0/swcgeom/utils/renderer.py +0 -244
- {swcgeom-0.15.0 → swcgeom-0.16.0}/.gitignore +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/.pylintrc +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/LICENSE +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/README.md +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/examples/Branch.ipynb +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/examples/BranchTree.ipynb +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/examples/CollectTips.ipynb +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/examples/CutTree.ipynb +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/examples/Features.ipynb +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/examples/GeometryTransform.ipynb +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/examples/ImageStack.ipynb +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/examples/MST.ipynb +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/examples/SpectralClustering.ipynb +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/examples/Tree.ipynb +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/examples/data/101711-10_4p5-of-16_initial.CNG.swc +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/examples/data/101711-11_16-of-16_initial.CNG.swc +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/examples/data/1059283677_15257_2226-X16029-Y23953.swc +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/examples/data/toydata.swc +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/examples/dgl/graph.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/examples/pytorch/branch.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/examples/pytorch/tree_folder_dataset.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/git-conventional-commits.yaml +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/setup.cfg +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/__init__.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/analysis/__init__.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/analysis/branch_features.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/analysis/feature_extractor.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/analysis/node_features.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/analysis/path_features.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/analysis/trunk.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/analysis/visualization.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/analysis/volume.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/core/branch_tree.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/core/swc.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/core/swc_utils/__init__.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/core/swc_utils/io.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/core/swc_utils/normalizer.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/core/swc_utils/subtree.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/core/tree_utils_impl.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/images/__init__.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/transforms/base.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/transforms/branch.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/transforms/geometry.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/transforms/path.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/transforms/population.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/transforms/tree_assembler.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/utils/debug.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/utils/download.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/utils/dsu.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/utils/ellipse.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/utils/file.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/utils/solid_geometry.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/utils/transforms.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom/utils/volumetric_object.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom.egg-info/dependency_links.txt +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/swcgeom.egg-info/top_level.txt +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/tests/__init__.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/tests/analysis/test_volume.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/tests/utils/__init__.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/tests/utils/test_dsu.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/tests/utils/test_sdf.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/tests/utils/test_solid_geometry.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/tests/utils/test_transforms.py +0 -0
- {swcgeom-0.15.0 → swcgeom-0.16.0}/tests/utils/test_volumetric_object.py +0 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
name: Build Python Package
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_call:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
build:
|
|
8
|
+
runs-on: ubuntu-latest
|
|
9
|
+
steps:
|
|
10
|
+
- uses: actions/checkout@v3
|
|
11
|
+
|
|
12
|
+
- name: Set up Python
|
|
13
|
+
uses: actions/setup-python@v3
|
|
14
|
+
with:
|
|
15
|
+
python-version: "3.10"
|
|
16
|
+
|
|
17
|
+
- name: Get history and tags for SCM versioning to work
|
|
18
|
+
run: |
|
|
19
|
+
git fetch --prune --unshallow
|
|
20
|
+
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
|
21
|
+
git describe --tags
|
|
22
|
+
git describe --tags $(git rev-list --tags --max-count=1)
|
|
23
|
+
|
|
24
|
+
- name: Install dependencies
|
|
25
|
+
run: |
|
|
26
|
+
python -m pip install --upgrade pip
|
|
27
|
+
pip install build
|
|
28
|
+
|
|
29
|
+
- name: Build package
|
|
30
|
+
run: python -m build
|
|
31
|
+
|
|
32
|
+
- name: Archive production artifacts
|
|
33
|
+
uses: actions/upload-artifact@v3
|
|
34
|
+
with:
|
|
35
|
+
name: release
|
|
36
|
+
path: |
|
|
37
|
+
dist/
|
|
38
|
+
swcgeom.egg-info/
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
name: Release to GitHub
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- v*
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
contents: read
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
build:
|
|
13
|
+
uses: ./.github/workflows/build.yml
|
|
14
|
+
|
|
15
|
+
publish:
|
|
16
|
+
runs-on: ubuntu-latest
|
|
17
|
+
needs: build
|
|
18
|
+
steps:
|
|
19
|
+
- name: Get version
|
|
20
|
+
id: get_version
|
|
21
|
+
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
|
|
22
|
+
|
|
23
|
+
- name: Download release
|
|
24
|
+
uses: actions/download-artifact@v3
|
|
25
|
+
with:
|
|
26
|
+
name: release
|
|
27
|
+
|
|
28
|
+
- name: Pack release
|
|
29
|
+
run: tar czf swcgeom-${{ steps.get_version.outputs.VERSION }}.tgz dist/
|
|
30
|
+
|
|
31
|
+
- name: Create release
|
|
32
|
+
uses: softprops/action-gh-release@v1
|
|
33
|
+
with:
|
|
34
|
+
token: ${{ secrets.GH_TOKEN }}
|
|
35
|
+
files: swcgeom-${{ steps.get_version.outputs.VERSION }}.tgz
|
|
@@ -6,26 +6,26 @@ name: Release to PyPI
|
|
|
6
6
|
on:
|
|
7
7
|
push:
|
|
8
8
|
tags:
|
|
9
|
-
|
|
9
|
+
- v*
|
|
10
10
|
|
|
11
11
|
permissions:
|
|
12
12
|
contents: read
|
|
13
13
|
|
|
14
14
|
jobs:
|
|
15
|
-
build:
|
|
15
|
+
build:
|
|
16
16
|
uses: ./.github/workflows/build.yml
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
publish:
|
|
19
19
|
runs-on: ubuntu-latest
|
|
20
20
|
needs: build
|
|
21
21
|
steps:
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
22
|
+
- name: Download release
|
|
23
|
+
uses: actions/download-artifact@v3
|
|
24
|
+
with:
|
|
25
|
+
name: release
|
|
26
26
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
27
|
+
- name: Publish package
|
|
28
|
+
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
|
|
29
|
+
with:
|
|
30
|
+
user: __token__
|
|
31
|
+
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"[python]": {
|
|
3
|
+
"editor.defaultFormatter": "ms-python.black-formatter"
|
|
4
|
+
},
|
|
5
|
+
"python.analysis.typeCheckingMode": "basic",
|
|
6
|
+
"python.testing.pytestArgs": [
|
|
7
|
+
"tests"
|
|
8
|
+
],
|
|
9
|
+
"python.testing.unittestEnabled": false,
|
|
10
|
+
"python.testing.pytestEnabled": true,
|
|
11
|
+
"isort.args": [
|
|
12
|
+
"--profile",
|
|
13
|
+
"black"
|
|
14
|
+
],
|
|
15
|
+
}
|
|
@@ -1,5 +1,54 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## **0.16.0** <sub><sup>2024-03-16 ([bf2bf95...7029483](https://github.com/yzx9/swcgeom/compare/bf2bf95ee9fbfb7eba871db7303292f1dfcc7b8f...70294836643e51ca43d039887bbd71de3a9b561b?diff=split))</sup></sub>
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
#####  `analysis`
|
|
8
|
+
|
|
9
|
+
- add l\-measure support \(close \#13\) ([15ddc33](https://github.com/yzx9/swcgeom/commit/15ddc333c4cdce42fe99fb2383fa0768bc2e35b2))
|
|
10
|
+
|
|
11
|
+
#####  `core`
|
|
12
|
+
|
|
13
|
+
- \`Tree\` accpet values with custom names ([722f84f](https://github.com/yzx9/swcgeom/commit/722f84fdd71133d07e74b5f90171b3671a4fe4c9))
|
|
14
|
+
- add \`Population\.map\` parallel processing support ([a1ee5bb](https://github.com/yzx9/swcgeom/commit/a1ee5bb6344ad5ab7b6572962f3b84caedf1351f))
|
|
15
|
+
|
|
16
|
+
#####  `images`
|
|
17
|
+
|
|
18
|
+
- add image contrast functions ([85b881e](https://github.com/yzx9/swcgeom/commit/85b881e91e878daf6fb3aa2862b5cd62eaa3488b))
|
|
19
|
+
- stat image stack folder ([ffc5e3a](https://github.com/yzx9/swcgeom/commit/ffc5e3a649a4d8203c2530b6351a7b509b262cf3))
|
|
20
|
+
|
|
21
|
+
#####  `transforms`
|
|
22
|
+
|
|
23
|
+
- add basic neuronlucida asc format support \(close \#12\) ([619a275](https://github.com/yzx9/swcgeom/commit/619a275aaa5a311c66e1a2438e6251ee4b9bd703))
|
|
24
|
+
- add \`SGuoImPreProcess\` ([dab7481](https://github.com/yzx9/swcgeom/commit/dab74818e5ea82d27450758f868bdc633b8992bf))
|
|
25
|
+
- add image stack related transforms ([7029483](https://github.com/yzx9/swcgeom/commit/70294836643e51ca43d039887bbd71de3a9b561b))
|
|
26
|
+
|
|
27
|
+
#####  `utils`
|
|
28
|
+
|
|
29
|
+
- \`Tree\` support array like inputs ([1f228d0](https://github.com/yzx9/swcgeom/commit/1f228d055b99c8545ba51da5af2bca8d7b760f3f))
|
|
30
|
+
- download source swc and log from neuromorpho ([d4fbfb6](https://github.com/yzx9/swcgeom/commit/d4fbfb6f0b89990bf63b481333d6c3c3cb16705c))
|
|
31
|
+
|
|
32
|
+
### Bug Fixes
|
|
33
|
+
|
|
34
|
+
#####  `utils`
|
|
35
|
+
|
|
36
|
+
- expecting a figure from the axes ([bf2bf95](https://github.com/yzx9/swcgeom/commit/bf2bf95ee9fbfb7eba871db7303292f1dfcc7b8f))
|
|
37
|
+
|
|
38
|
+
### Performance Improvements
|
|
39
|
+
|
|
40
|
+
#####  `core`
|
|
41
|
+
|
|
42
|
+
- use NamedTuple for SWCNames and SWCTypes ([300bfea](https://github.com/yzx9/swcgeom/commit/300bfeac92b90e09f262a850ecc226257c2af2e5))
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
### BREAKING CHANGES
|
|
46
|
+
|
|
47
|
+
- `core` \`Tree\` accpet values with custom names ([722f84f](https://github.com/yzx9/swcgeom/commit/722f84fdd71133d07e74b5f90171b3671a4fe4c9))
|
|
48
|
+
- `core` remove deprecated \`Tree\.Node\.get\_branch\` and \`Node\.child\_ids\` method ([1de86af](https://github.com/yzx9/swcgeom/commit/1de86afc21451be4c6bde5084688170d901eb625))
|
|
49
|
+
|
|
50
|
+
<br>
|
|
51
|
+
|
|
3
52
|
## **0.15.0** <sub><sup>2024-01-28 ([d300b41...8c9e0ab](https://github.com/yzx9/swcgeom/compare/d300b41689ee892fe5a23dad57f92e1054c0f9e9...8c9e0ab45c447d3d8121b0cc4178be5f65d18a56?diff=split))</sup></sub>
|
|
4
53
|
|
|
5
54
|
### Features
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: swcgeom
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.16.0
|
|
4
4
|
Summary: Neuron geometry library for swc format
|
|
5
5
|
Author-email: yzx9 <yuan.zx@outlook.com>
|
|
6
6
|
License: Apache-2.0
|
|
@@ -19,14 +19,14 @@ Requires-Dist: sdflit>=0.2.1
|
|
|
19
19
|
Requires-Dist: seaborn>=0.12.0
|
|
20
20
|
Requires-Dist: tifffile>=2022.8.12
|
|
21
21
|
Requires-Dist: typing_extensions>=4.4.0
|
|
22
|
+
Requires-Dist: tqdm>=4.46.1
|
|
22
23
|
Requires-Dist: v3d-py-helper>=0.1.0
|
|
23
24
|
Provides-Extra: all
|
|
24
25
|
Requires-Dist: beautifulsoup4>=4.11.1; extra == "all"
|
|
25
26
|
Requires-Dist: certifi>=2023.5.7; extra == "all"
|
|
26
27
|
Requires-Dist: chardet>=5.2.0; extra == "all"
|
|
27
28
|
Requires-Dist: lmdb>=1.4.1; extra == "all"
|
|
28
|
-
Requires-Dist:
|
|
29
|
-
Requires-Dist: tqdm>=4.46.1; extra == "all"
|
|
29
|
+
Requires-Dist: requests>=2.0.0; extra == "all"
|
|
30
30
|
Requires-Dist: urllib3>=1.26.0; extra == "all"
|
|
31
31
|
|
|
32
32
|
# SWCGEOM
|
|
@@ -22,6 +22,7 @@ dependencies = [
|
|
|
22
22
|
"seaborn>=0.12.0",
|
|
23
23
|
"tifffile>=2022.8.12",
|
|
24
24
|
"typing_extensions>=4.4.0",
|
|
25
|
+
"tqdm>=4.46.1",
|
|
25
26
|
"v3d-py-helper>=0.1.0",
|
|
26
27
|
]
|
|
27
28
|
|
|
@@ -31,8 +32,7 @@ all = [
|
|
|
31
32
|
"certifi>=2023.5.7",
|
|
32
33
|
"chardet>=5.2.0",
|
|
33
34
|
"lmdb>=1.4.1",
|
|
34
|
-
"
|
|
35
|
-
"tqdm>=4.46.1",
|
|
35
|
+
"requests>=2.0.0",
|
|
36
36
|
"urllib3>=1.26.0",
|
|
37
37
|
]
|
|
38
38
|
|