-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
66 lines (60 loc) · 2.43 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
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("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("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("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("pvacseq/server"):
for filename in filenames:
if not (filename.endswith(".py") or filename.endswith(".pyc")):
server_data.append(os.path.join('..', dirpath, filename))
setup(
name="pvacseq",
version="4.0.10",
packages=["pvacseq", "pvacseq.lib", "pvacseq.server"],
entry_points={
"console_scripts":[
"pvacseq = pvacseq.pvacseq:main",
"pvacseq-ui = pvacseq.server.app:main"
]
},
install_requires=[
'PyVCF',
'requests',
'PyYAML',
'connexion'
],
package_data={
'pvacseq' : data_files,
'pvacseq.server' : server_data,
},
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", #
)