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 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
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
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,7 @@
1
+ setup.py
2
+ src/mmmvae.egg-info/PKG-INFO
3
+ src/mmmvae.egg-info/SOURCES.txt
4
+ src/mmmvae.egg-info/dependency_links.txt
5
+ src/mmmvae.egg-info/entry_points.txt
6
+ src/mmmvae.egg-info/requires.txt
7
+ src/mmmvae.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ mmmvae = mmmvae.main:main
@@ -0,0 +1,8 @@
1
+ numpy
2
+ pandas
3
+ torch
4
+ scanpy
5
+ matplotlib
6
+ scikit-learn
7
+ python-magic
8
+ tqdm