-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
34 lines (33 loc) · 1.5 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
# This Python file uses the following encoding: utf-8
from setuptools import setup, find_packages
setup( name='timspy',
packages=find_packages(),
version='0.9.2',
description='TimsPy: access for raw timsTOF Pro data for data scientists',
long_description='TimsPy facilitates access to the raw data gathered by timsTOF Pro mass spectrometer. Directly see data in the long format in the familiar Pandas DataFrame object.',
author='MatteoLacki',
author_email='[email protected]',
url='https://github.com/MatteoLacki/timspy.git',
keywords=['timsTOFpro', 'numpy', 'data science','mass spectrometry'],
classifiers=['Development Status :: 1 - Planning',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Chemistry',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'],
install_requires=['pandas',
'opentimspy',
'matplotlib',
'opentims_bruker_bridge',
'tqdm'],
extras_require={
'vaex': ['vaex-core',
'vaex-hdf5',
'h5py'],
},
scripts = [
'bin/tims2hdf5.py',
'bin/get_TIC.py'
]
)