forked from KohlbacherLab/epytope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
118 lines (95 loc) · 4.14 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
from setuptools import setup, find_packages # Always prefer setuptools over distutils
from distutils.core import Extension
from codecs import open # To use a consistent encoding
from os import path
import glob
here = path.abspath(path.dirname(__file__))
#for packaging files must be in a package (with init) and listed in package_data
# package-externals can be included with data_files,
# and there is a bug in patter nmatching http://bugs.python.org/issue19286
# install unclear for data_files
# Read the contents of the README.md file for use as long_description
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='epytope',
# Version:
version='3.3.1',
description='A Framework for Epitope Detection and Vaccine Design',
long_description=long_description,
long_description_content_type='text/markdown',
# The project's main homepage.
url='https://github.com/KohlbacherLab/epytope',
# Author details
author='Benjamin Schubert, Mathias Walzer, Christopher Mohr, Leon Kuchenbecker',
# maintainer details
maintainer='Christopher Mohr',
maintainer_email='[email protected]',
# Choose your license
license='BSD',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 5 - Production/Stable',
# Indicate who your project is intended for
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
# The license as you wish (should match "license" above)
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3 :: Only',
],
# What epytope relates to:
keywords='epitope prediction vaccine design HLA MHC',
# Specify packages via find_packages() and exclude the tests and
# documentation:
packages=find_packages(),
# If there are data files included in your packages that need to be
# installed, specify them here. If using Python 2.6 or less, then these
# have to be included in MANIFEST.in as well.
#include_package_data=True,
package_data={
'epytope.Data.examples': ['*.*'],
'epytope.Data.svms.svmtap': ['*'],
'epytope.Data.svms.svmhc': ['*'],
'epytope.Data.svms.unitope': ['*'],
},
data_files = [
('docs', ['CHANGELOG.md']),
],
#package_data is a lie: http://stackoverflow.com/questions/7522250/how-to-include-package-data-with-setuptools-distribute
# 'package_data' is used to also install non package data files
# see http://docs.python.org/3.4/distutils/setupscript.html#installing-additional-files
# example:
#data_files=data_files,
# Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform.
# IMPORTANT: script names need to be in lower case ! ! ! (otherwise
# deinstallation does not work)
#entry_points={
# 'console_scripts': [
# 'epitopeprediction=epytope.Apps.EpitopePrediction:main',
# ],
#},
# Run-time dependencies. (will be installed by pip when epytope is installed)
# TODO: find alternative for SMVlight scikitlearn
install_requires=[
'setuptools',
'pandas>=1.3.5', # See issue #84
'pyomo>=4.0',
'PyMySQL',
'biopython',
'PyVCF3',
'mhcflurry<=1.4.3',
'mhcnuggets==2.3.2',
'keras<=2.3.1', # legacy tensorflow required by mhcnuggets resolves to incompatible keras version
'h5py<=2.10.0', # mhcnuggets fails to read model with newer versions
'requests',
'beautifulsoup4',
],
)