-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·56 lines (52 loc) · 1.49 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
#!/usr/bin/python
"""
DNA and RNA variant calling pipeline with HLA and neoantigen predictions
@author: Jose Fernandez Navarro <[email protected]>
"""
import os
import io
import glob
from hlapipeline.version import version_number
from setuptools import setup, find_packages
# Get the long description from the relevant file
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='hlapipeline',
version=version_number,
description=__doc__.split("\n", 1)[0],
long_description=long_description,
keywords='rna-seq analysis dna WES WGS HLA MHC neoantigen variant',
author='Jose Fernandez Navarro',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
include_package_data=False,
package_data={'': ['RELEASE-VERSION']},
zip_safe=False,
install_requires=[
'setuptools',
'scipy',
'numpy',
'pandas',
'scikit-learn',
'pysam',
'vcfpy',
'biopython',
'mhcflurry',
'varcode'
],
#test_suite = 'tests',
scripts=glob.glob('*.py'),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Software Development',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: MIT:: Copyright Jose Fernandez Navarro',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Environment :: Console',
],
)