File size: 924 Bytes
9f29b8f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from setuptools import setup, find_packages

VERSION = '0.0.100'
DESCRIPTION = 'pyHXExpress'
LONG_DESCRIPTION = 'High-throughput polymodal analysis of protein HDX-MS spectra'

setup(
    name="pyhxexpress",
    version=VERSION,
    description=DESCRIPTION,
    long_description=LONG_DESCRIPTION,
    author="<Lisa M Tuttle>",
    author_email="<tuttlelm@uw.edu>",
    url='https://github.com/tuttlelm/pyHXExpress',
    license='GPLv3',
    packages=find_packages(),
    install_requires=['numpy','pandas','pymupdf','scipy','matplotlib','pyteomics',
              'brain-isotopic-distribution','biopython'],
    keywords='HDX-MS',

    py_modules = ['pyhxexpress'],
    
  
    classifiers= [
        "Development Status :: 4 - Beta",
        "Intended Audience :: Science/Research",
        'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
        "Programming Language :: Python :: 3",
    ]
)