seu-3d 1.0.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.
- seu_3d-1.0.1/PKG-INFO +20 -0
- seu_3d-1.0.1/README.md +9 -0
- seu_3d-1.0.1/pyproject.toml +20 -0
- seu_3d-1.0.1/setup.cfg +4 -0
- seu_3d-1.0.1/src/seu-3d/__init__.py +6 -0
- seu_3d-1.0.1/src/seu-3d/_display_embryo.py +2524 -0
- seu_3d-1.0.1/src/seu-3d/_umap_selection.py +394 -0
- seu_3d-1.0.1/src/seu-3d/_utils.py +48 -0
- seu_3d-1.0.1/src/seu-3d/_widget_load.py +178 -0
- seu_3d-1.0.1/src/seu-3d/_widget_register.py +326 -0
- seu_3d-1.0.1/src/seu-3d/sc3D.py +2617 -0
- seu_3d-1.0.1/src/seu-3d/transformations.py +310 -0
- seu_3d-1.0.1/src/seu_3d.egg-info/PKG-INFO +20 -0
- seu_3d-1.0.1/src/seu_3d.egg-info/SOURCES.txt +14 -0
- seu_3d-1.0.1/src/seu_3d.egg-info/dependency_links.txt +1 -0
- seu_3d-1.0.1/src/seu_3d.egg-info/top_level.txt +1 -0
seu_3d-1.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: seu-3d
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: A small example package
|
|
5
|
+
Author-email: XieLab <220242543@seu.edu.cn>
|
|
6
|
+
Project-URL: Homepage, https://github.com/DingAnZhong/SEU-3D
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# SEU-3D
|
|
13
|
+
|
|
14
|
+
## description
|
|
15
|
+
|
|
16
|
+
3d visualization and analysis plugin for spatial transcription embryo base on napari
|
|
17
|
+
|
|
18
|
+
## updata log
|
|
19
|
+
|
|
20
|
+
[1.0.1] first release
|
seu_3d-1.0.1/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools >= 77.0.3"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "seu-3d"
|
|
7
|
+
version = "1.0.1"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="XieLab", email="220242543@seu.edu.cn" },
|
|
10
|
+
]
|
|
11
|
+
description = "A small example package"
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.9"
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Operating System :: Microsoft :: Windows",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[project.urls]
|
|
20
|
+
Homepage = "https://github.com/DingAnZhong/SEU-3D"
|
seu_3d-1.0.1/setup.cfg
ADDED