-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.37 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import io
from os.path import abspath, dirname, join
from setuptools import find_packages, setup
HERE = dirname(abspath(__file__))
LOAD_TEXT = lambda name: io.open(join(HERE, name), encoding='UTF-8').read()
DESCRIPTION = '\n\n'.join(LOAD_TEXT(_) for _ in [
'README.rst'
])
setup(
name = 'metbit',
packages = ['metbit'],
version = '7.0.3',
license='MIT',
description = 'Metabolomics data analysis and visualization tools.',
author = 'aeiwz',
author_email = '[email protected]',
url = 'https://github.com/aeiwz/metbit.git',
download_url = 'https://github.com/aeiwz/metbit/archive/refs/tags/V7.0.3.tar.gz',
keywords = ['Omics', 'Multivariate analysis', 'Visualization', 'Data Analysis', 'Metabolomics', 'Chemometrics'],
install_requires=[
'scikit-learn',
'pandas',
'numpy',
'matplotlib',
'seaborn',
'scipy',
'statsmodels',
'plotly',
'pyChemometrics',
'lingress',
'tqdm',
'dash',
'pingouin',
'nmrglue',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.12',
],
)