forked from dmnfarrell/epitopepredict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (42 loc) · 1.7 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
from setuptools import setup
import sys,os
with open('epitopepredict/description.txt') as f:
long_description = f.read()
setup(
name = 'epitopepredict',
version = '0.4.0',
description = 'Python package for epitope prediction',
long_description = long_description,
url='https://github.com/dmnfarrell/epitopepredict',
license='GPL v3',
author = 'Damien Farrell',
author_email = '[email protected]',
packages = ['epitopepredict'],
package_data={'epitopepredict': ['mhcdata/*.csv', 'mhcdata/*.zip', 'presets/*.csv',
'tepitope/*.txt', 'tepitope/pssm/*', 'testing/*',
'templates/*.html','static/*',
'description.txt']
},
install_requires=['numpy>=1.10',
'pandas>=0.22',
'biopython>=1.5',
'bokeh==0.12.14',
'wtforms>=2.1',
'wtforms_tornado',
'future'],
entry_points = {
'console_scripts': [
'epitopepredict=epitopepredict.app:main']
},
classifiers = ['Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics'],
keywords = ['epitope','mhc','immunology','biology'],
)