mmmvae 0.1.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.
- mmmvae-0.1.0/PKG-INFO +18 -0
- mmmvae-0.1.0/setup.cfg +4 -0
- mmmvae-0.1.0/setup.py +26 -0
- mmmvae-0.1.0/src/mmmvae.egg-info/PKG-INFO +18 -0
- mmmvae-0.1.0/src/mmmvae.egg-info/SOURCES.txt +7 -0
- mmmvae-0.1.0/src/mmmvae.egg-info/dependency_links.txt +1 -0
- mmmvae-0.1.0/src/mmmvae.egg-info/entry_points.txt +2 -0
- mmmvae-0.1.0/src/mmmvae.egg-info/requires.txt +8 -0
- mmmvae-0.1.0/src/mmmvae.egg-info/top_level.txt +1 -0
mmmvae-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mmmvae
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Multi-Modal Metabolic Variational Autoencoder
|
|
5
|
+
Author: TianMiaoMiao
|
|
6
|
+
Requires-Python: >=3.10,<3.13
|
|
7
|
+
Requires-Dist: numpy
|
|
8
|
+
Requires-Dist: pandas
|
|
9
|
+
Requires-Dist: torch
|
|
10
|
+
Requires-Dist: scanpy
|
|
11
|
+
Requires-Dist: matplotlib
|
|
12
|
+
Requires-Dist: scikit-learn
|
|
13
|
+
Requires-Dist: python-magic
|
|
14
|
+
Requires-Dist: tqdm
|
|
15
|
+
Dynamic: author
|
|
16
|
+
Dynamic: requires-dist
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
Dynamic: summary
|
mmmvae-0.1.0/setup.cfg
ADDED
mmmvae-0.1.0/setup.py
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="mmmvae",
|
|
5
|
+
version="0.1.0",
|
|
6
|
+
author="TianMiaoMiao",
|
|
7
|
+
description="Multi-Modal Metabolic Variational Autoencoder",
|
|
8
|
+
package_dir={"": "src"},
|
|
9
|
+
packages=find_packages(where="src"),
|
|
10
|
+
install_requires=[
|
|
11
|
+
"numpy",
|
|
12
|
+
"pandas",
|
|
13
|
+
"torch",
|
|
14
|
+
"scanpy",
|
|
15
|
+
"matplotlib",
|
|
16
|
+
"scikit-learn",
|
|
17
|
+
"python-magic",
|
|
18
|
+
"tqdm"
|
|
19
|
+
],
|
|
20
|
+
entry_points={
|
|
21
|
+
"console_scripts": [
|
|
22
|
+
"mmmvae = mmmvae.main:main",
|
|
23
|
+
],
|
|
24
|
+
},
|
|
25
|
+
python_requires=">=3.10,<3.13",
|
|
26
|
+
)
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mmmvae
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Multi-Modal Metabolic Variational Autoencoder
|
|
5
|
+
Author: TianMiaoMiao
|
|
6
|
+
Requires-Python: >=3.10,<3.13
|
|
7
|
+
Requires-Dist: numpy
|
|
8
|
+
Requires-Dist: pandas
|
|
9
|
+
Requires-Dist: torch
|
|
10
|
+
Requires-Dist: scanpy
|
|
11
|
+
Requires-Dist: matplotlib
|
|
12
|
+
Requires-Dist: scikit-learn
|
|
13
|
+
Requires-Dist: python-magic
|
|
14
|
+
Requires-Dist: tqdm
|
|
15
|
+
Dynamic: author
|
|
16
|
+
Dynamic: requires-dist
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
Dynamic: summary
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|