forked from mfitzp/icoshift
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·50 lines (43 loc) · 1.74 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
47
48
49
50
#!/usr/bin/env python
# coding=utf-8
import sys
from copy import copy
#import distribute_setup
#distribute_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name='icoshift',
version='1.0',
author='Martin Fitzpatrick',
url='https://github.com/mfitzp/icoshift',
download_url='https://github.com/mfitzp/icoshift/zipball/master',
description='icoshift: A versatile tool for the rapid alignment of 1D NMR spectra',
long_description='Python (numpy+scipy) implementation of icoshift, an open source and highly efficient \
program designed for solving signal alignment \
problems in metabonomic NMR data analysis. The icoshift algorithm is based on correlation shifting \
of spectral intervals and employs an FFT engine that aligns all spectra simultaneously. \
Translated from MATLAB code using smop and manual adjustments. \
',
packages=['icoshift'],
include_package_data=True,
package_data={
'': ['*.txt', '*.rst', '*.md'],
},
exclude_package_data={'': ['README.txt']},
install_requires=[
'numpy>=1.7.1',
'scipy>=0.12.0',
],
keywords='bioinformatics metabolomics research analysis science',
license='GPL',
classifiers=['Development Status :: 4 - Beta',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'License :: OSI Approved :: BSD License',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
],
)