This repository has been archived by the owner on Jan 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (36 loc) · 2.59 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
from distutils.core import setup
setup(
name='RawQuant',
packages=['RawQuant', 'RawQuant/RawFileReader'],
package_data={'RawQuant/RawFileReader': ['RawQuant/RawFileReader/*.dll', 'RawQuant/RawFileReader/monomac/*.dll',
'RawQuant/RawFileReader/.RawFileReaderLisence.txt']},
data_files=[('lib/site-packages/RawQuant/RawFileReader', ['RawQuant/RawFileReader/ThermoFisher.CommonCore.BackgroundSubtraction.dll',
'RawQuant/RawFileReader/ThermoFisher.CommonCore.Data.dll',
'RawQuant/RawFileReader/ThermoFisher.CommonCore.MassPrecisionEstimator.dll',
'RawQuant/RawFileReader/ThermoFisher.CommonCore.RawFileReader.dll',
'RawQuant/RawFileReader/monomac/ThermoFisher.CommonCore.BackgroundSubtraction.dll',
'RawQuant/RawFileReader/monomac/ThermoFisher.CommonCore.Data.dll',
'RawQuant/RawFileReader/monomac/ThermoFisher.CommonCore.MassPrecisionEstimator.dll',
'RawQuant/RawFileReader/monomac/ThermoFisher.CommonCore.RawFileReader.dll',
'RawQuant/RawFileReader/RawFileReaderLicense.txt'])],
include_package_data=True,
version='0.2.3',
description='Package for extracting scan meta data and quantification information from Thermo .raw files',
long_description='RawQuant is a Python package for extracting scan meta data and quantification values from ' +
'Thermo .raw files.',
author='Kevin Kovalchik',
author_email='kkovalchik@bcgsc.ca',
url='https://github.com/kevinkovalchik/RawQuant',
project_urls={'Documentation': 'https://github.com/kevinkovalchik/RawQuant/docs'},
keywords=['Orbitrap', 'mass spectrometery', 'proteomics', 'isobaric labelling', 'quantification', 'scan meta data'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
],
install_requires=['numpy', 'pandas', 'tqdm>=4', 'joblib', 'pythonnet'],
python_requires='>=3.6'
)