metbit 1.0.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.
metbit-1.0.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 CAS9
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
metbit-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.1
2
+ Name: metbit
3
+ Version: 1.0.0
4
+ Summary: Metabolomics data analysis and visualization tools.
5
+ Home-page: https://github.com/aeiwz/metbit.git
6
+ Download-URL: https://github.com/aeiwz/metbit/archive/refs/tags/v1.0.0.tar.gz
7
+ Author: aeiwz
8
+ Author-email: theerayut_aeiw_123@hotmail.com
9
+ License: MIT
10
+ Keywords: Omics,Chemometrics,Visualization,Data Analysis
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Education
13
+ Classifier: Topic :: Software Development :: Build Tools
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ License-File: LICENSE
17
+ Requires-Dist: scikit-learn
18
+ Requires-Dist: pandas
19
+ Requires-Dist: numpy
20
+ Requires-Dist: matplotlib
21
+ Requires-Dist: seaborn
22
+ Requires-Dist: scipy
23
+ Requires-Dist: statsmodels
24
+ Requires-Dist: plotly
25
+ Requires-Dist: dash
26
+ Requires-Dist: pyChemometrics
27
+
28
+ # metbit
29
+ Metbit is an python package to analyse metabolomics
metbit-1.0.0/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # metbit
2
+ Metbit is an python package to analyse metabolomics
@@ -0,0 +1,28 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ # utility
4
+ from metbit.utility.unipair import unipair
5
+ from metbit.utility.genpage import genpage
6
+
7
+ # preprocessing
8
+ from metbit.preprocessing.denoise_spec import decrease_noise
9
+ from metbit.preprocessing.normspec import Normalization
10
+
11
+ # multivariate
12
+ from metbit.multivariate.opls.anova import *
13
+ from metbit.multivariate.opls.base import *
14
+ from metbit.multivariate.opls.boxplot import *
15
+ from metbit.multivariate.opls.cross_validation import *
16
+ from metbit.multivariate.opls.elipse import *
17
+ from metbit.multivariate.opls.opls import *
18
+ from metbit.multivariate.opls.plotting import *
19
+ from metbit.multivariate.opls.pls import *
20
+ from metbit.multivariate.opls.pretreatment import *
21
+ from metbit.multivariate.opls.vip import *
22
+
23
+ # univariate
24
+ from metbit.univariate.lingress import lingress
25
+
26
+
27
+ # __all__ = ['unipair', 'genpage', 'decrease_noise', 'Normalization', 'anova', 'base', 'boxplot', 'cross_validation', 'elipse', 'opls', 'plotting', 'pls', 'pretreatment', 'vip', 'lingress']
28
+
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.1
2
+ Name: metbit
3
+ Version: 1.0.0
4
+ Summary: Metabolomics data analysis and visualization tools.
5
+ Home-page: https://github.com/aeiwz/metbit.git
6
+ Download-URL: https://github.com/aeiwz/metbit/archive/refs/tags/v1.0.0.tar.gz
7
+ Author: aeiwz
8
+ Author-email: theerayut_aeiw_123@hotmail.com
9
+ License: MIT
10
+ Keywords: Omics,Chemometrics,Visualization,Data Analysis
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Education
13
+ Classifier: Topic :: Software Development :: Build Tools
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ License-File: LICENSE
17
+ Requires-Dist: scikit-learn
18
+ Requires-Dist: pandas
19
+ Requires-Dist: numpy
20
+ Requires-Dist: matplotlib
21
+ Requires-Dist: seaborn
22
+ Requires-Dist: scipy
23
+ Requires-Dist: statsmodels
24
+ Requires-Dist: plotly
25
+ Requires-Dist: dash
26
+ Requires-Dist: pyChemometrics
27
+
28
+ # metbit
29
+ Metbit is an python package to analyse metabolomics
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ README.md
3
+ setup.cfg
4
+ setup.py
5
+ metbit/__init__.py
6
+ metbit.egg-info/PKG-INFO
7
+ metbit.egg-info/SOURCES.txt
8
+ metbit.egg-info/dependency_links.txt
9
+ metbit.egg-info/requires.txt
10
+ metbit.egg-info/top_level.txt
@@ -0,0 +1,10 @@
1
+ scikit-learn
2
+ pandas
3
+ numpy
4
+ matplotlib
5
+ seaborn
6
+ scipy
7
+ statsmodels
8
+ plotly
9
+ dash
10
+ pyChemometrics
@@ -0,0 +1 @@
1
+ metbit
metbit-1.0.0/setup.cfg ADDED
@@ -0,0 +1,7 @@
1
+ [metadata]
2
+ description-file = README.md
3
+
4
+ [egg_info]
5
+ tag_build =
6
+ tag_date = 0
7
+
metbit-1.0.0/setup.py ADDED
@@ -0,0 +1,42 @@
1
+ import io
2
+ from os.path import abspath, dirname, join
3
+ from setuptools import find_packages, setup
4
+
5
+
6
+ HERE = dirname(abspath(__file__))
7
+ LOAD_TEXT = lambda name: io.open(join(HERE, name), encoding='UTF-8').read()
8
+ DESCRIPTION = '\n\n'.join(LOAD_TEXT(_) for _ in [
9
+ 'README.md'
10
+ ])
11
+
12
+ setup(
13
+ name = 'metbit',
14
+ packages = ['metbit'],
15
+ version = '1.0.0',
16
+ license='MIT',
17
+ description = 'Metabolomics data analysis and visualization tools.',
18
+ long_description=DESCRIPTION,
19
+ author = 'aeiwz',
20
+ author_email = 'theerayut_aeiw_123@hotmail.com',
21
+ url = 'https://github.com/aeiwz/metbit.git',
22
+ download_url = 'https://github.com/aeiwz/metbit/archive/refs/tags/v1.0.0.tar.gz',
23
+ keywords = ['Omics', 'Chemometrics', 'Visualization', 'Data Analysis'],
24
+ install_requires=[
25
+ 'scikit-learn',
26
+ 'pandas',
27
+ 'numpy',
28
+ 'matplotlib',
29
+ 'seaborn',
30
+ 'scipy',
31
+ 'statsmodels',
32
+ 'plotly',
33
+ 'dash',
34
+ 'pyChemometrics'],
35
+ classifiers=[
36
+ 'Development Status :: 3 - Alpha',
37
+ 'Intended Audience :: Education',
38
+ 'Topic :: Software Development :: Build Tools',
39
+ 'License :: OSI Approved :: MIT License',
40
+ 'Programming Language :: Python :: 3.11',
41
+ ],
42
+ )