forked from metaspace2020/sm-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 692 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
from sm import __version__
setup(name='sm',
version=__version__,
description='High throughput molecules annotation for imaging mass spectrometry data sets',
url='https://github.com/SpatialMetabolomics/sm-engine.git',
author='Alexandrov Team, EMBL',
author_email='vitaly.kovalev@embl.de',
packages=find_packages(),
install_requires=[
"pyImagingMSpec==0.1.4",
"cpyImagingMSpec==0.2.4",
"pyMSpec==0.1.2",
"cpyMSpec==0.3.5",
"pyimzML==1.2.1",
# TODO: consider installing with Ansible
"Pillow==4.2.1",
"pyopenms==2.2.0"
])