platpy 0.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.
- platpy-0.0.1/PKG-INFO +16 -0
- platpy-0.0.1/README.md +5 -0
- platpy-0.0.1/platpy.egg-info/PKG-INFO +16 -0
- platpy-0.0.1/platpy.egg-info/SOURCES.txt +6 -0
- platpy-0.0.1/platpy.egg-info/dependency_links.txt +1 -0
- platpy-0.0.1/platpy.egg-info/top_level.txt +1 -0
- platpy-0.0.1/pyproject.toml +18 -0
- platpy-0.0.1/setup.cfg +4 -0
platpy-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: platpy
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A spatial-first framework for multi-layer spatial transcriptomic analysis.
|
|
5
|
+
Author: T. Maynard
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# platpy
|
|
13
|
+
|
|
14
|
+
**PLATPY**: A spatial-first framework for multi-layer spatial transcriptomic analysis.
|
|
15
|
+
|
|
16
|
+
*Note: This package namespace is reserved. Core API and stable releases will be published here soon.*
|
platpy-0.0.1/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: platpy
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A spatial-first framework for multi-layer spatial transcriptomic analysis.
|
|
5
|
+
Author: T. Maynard
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# platpy
|
|
13
|
+
|
|
14
|
+
**PLATPY**: A spatial-first framework for multi-layer spatial transcriptomic analysis.
|
|
15
|
+
|
|
16
|
+
*Note: This package namespace is reserved. Core API and stable releases will be published here soon.*
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "platpy"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="T. Maynard" }
|
|
10
|
+
]
|
|
11
|
+
description = "A spatial-first framework for multi-layer spatial transcriptomic analysis."
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.8"
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Topic :: Scientific/Engineering :: Bio-Informatics",
|
|
18
|
+
]
|
platpy-0.0.1/setup.cfg
ADDED