# Copyright (c) 2015. Mount Sinai School of Medicine # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import os import logging import re from setuptools import setup readme_dir = os.path.dirname(__file__) readme_filename = os.path.join(readme_dir, 'README.md') try: with open(readme_filename, 'r') as f: readme = f.read() except: logging.warn("Failed to load %s" % readme_filename) readme = "" try: import pypandoc readme = pypandoc.convert(readme, to='rst', format='md') except: logging.warn("Conversion of long_description from MD to RST failed") pass with open('mhcflurry/package_metadata.py', 'r') as f: version = re.search( r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE).group(1) if __name__ == '__main__': setup( name='mhcflurry', version=version, description="MHC Binding Predictor", author="Alex Rubinsteyn", author_email="alex {dot} rubinsteyn {at} mssm {dot} edu", url="https://github.com/hammerlab/mhcflurry", license="http://www.apache.org/licenses/LICENSE-2.0.html", classifiers=[ 'Development Status :: 3 - Alpha', 'Environment :: Console', 'Operating System :: OS Independent', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python', 'Topic :: Scientific/Engineering :: Bio-Informatics', ], install_requires=[ 'numpy>=1.7', 'pandas>=0.13.1', 'appdirs', 'theano>=0.8.2', 'keras', 'fancyimpute>=0.0.12', 'scikit-learn', 'h5py', 'typechecks', # using for multi-threaded web server 'cherrypy', 'bottle', ], long_description=readme, packages=['mhcflurry'], scripts=[ "script/mhcflurry-train-class1-allele-specific-models.py", "script/mhcflurry-predict-class1.py", "script/mhcflurry-class1-web-server.py", "script/mhcflurry-dataset-size-sensitivity.py", ], )