forked from kevinmildau/moduleCompMet2024May
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1.14 KB
/
setup.py
File metadata and controls
39 lines (36 loc) · 1.14 KB
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
# From package directory and right environment, install package using: "pip install -e ."
from setuptools import setup
import os
r_script_sourcepath = os.path.join("msfeast", "runStats.R")
# Read the version string from version.py
version = {}
with open(os.path.join('compMetabolomics', 'version.py')) as fp:
exec(fp.read(), version)
setup(
name = 'compMetabolomics',
version = version["__version__"],
include_package_data = True,
packages = ['compMetabolomics'],
# scripts = ['someScriptPath.script'],
python_requires = '>=3.10',
install_requires = [
'numpy', #'numpy==1.24.4',
'jupyter', #'jupyter==1.0.0',
'ipykernel', #"ipykernel==6.28.0",
'scikit-learn', #'scikit-learn==1.4.0',
'scipy', #'scipy==1.10.1',
'plotly', #'plotly==5.18.0',
'pandas', #'pandas==2.1.4',
#'matchms==0.24.1', # required for data pre-processing only
#"matchmsextras==0.4.0", # required for data pre-processing only
'kmedoids==0.5.0',
#'spec2vec==0.8.0',
#'ms2deepscore==2.0.0', # required for data pre-processing only
'networkx',
'dash',
'dash-cytoscape'
],
extras_require={
'dev': ['pytest']
}
)