-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
86 lines (80 loc) · 2.9 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
from setuptools import setup
import os
import sys
if sys.version_info < (3,5):
print("This python version is not supported:")
print(sys.version)
print("pVAC-Seq requires python 3.5 or greater")
sys.exit(1)
data_files = []
for dirpath, dirnames, filenames in os.walk("tools/pvacseq/example_data"):
for filename in filenames:
if not (filename.endswith(".py") or filename.endswith(".pyc")):
data_files.append(os.path.join('..', dirpath, filename))
for dirpath, dirnames, filenames in os.walk("tools/pvacseq/VEP_plugins"):
for filename in filenames:
if not (filename.endswith(".py") or filename.endswith(".pyc")):
data_files.append(os.path.join('..', dirpath, filename))
for dirpath, dirnames, filenames in os.walk("tools/pvacseq/iedb_alleles"):
for filename in filenames:
if not (filename.endswith(".py") or filename.endswith(".pyc")):
data_files.append(os.path.join('..', dirpath, filename))
server_data = []
for dirpath, dirnames, filenames in os.walk("utils/pvacapi"):
for filename in filenames:
if not (filename.endswith(".py") or filename.endswith(".pyc")):
server_data.append(os.path.join(
os.path.relpath(
dirpath,
'utils/pvacapi'
),
filename
))
setup(
name="pvacseq",
version="4.1.0b4",
packages=["tools.pvacseq", "lib", "utils.pvacapi", "utils.pvacapi.controllers"],
entry_points={
"console_scripts":[
"pvacseq = tools.pvacseq.pvacseq:main",
"pvacseq-api = utils.pvacapi.app:main [API]"
]
},
install_requires=[
'PyVCF',
'requests',
'PyYAML',
'connexion',
'biopython',
'networkx',
'simanneal',
'pandas'
],
package_data={
'tools.pvacseq' : data_files,
'utils.pvacapi' : server_data,
},
extras_require={
'API':[
'connexion',
'py-postgresql',
'watchdog',
'flask-cors',
'bokeh',
'pvacseq-client'
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
"Programming Language :: Python :: 3.5"
],
author = "Jasreet Hundal, Susanna Kiwala, Aaron Graubert, Jason Walker, Chris Miller, Malachi Griffith and Elaine Mardis",
author_email = "pvacseq-support@genome.wustl.edu",
description = "Personalized Variant Antigens by Cancer Sequencing (pVAC-Seq)",
long_description = "A cancer immunotherapy pipeline for the identification of personalized Variant Antigens by Cancer Sequencing (pVAC-Seq)",
license = "NPOSL-3.0",
keywords = "antigens neoantigens cancer sequencing variant variants",
url = "https://github.com/griffithlab/pVAC-Seq",
)