-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (47 loc) · 1.57 KB
/
Copy pathsetup.py
File metadata and controls
52 lines (47 loc) · 1.57 KB
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
import os
from setuptools import setup, find_packages
import sys
import subprocess as sp
if sys.version_info < (3, 7):
print("This python version is not supported:")
print(sys.version)
print("Seq2Neo requires python 3.7 or greater")
sys.exit(1)
data_files = []
for dirpath, dirnames, filenames in os.walk("seq2neo/function/immuno_Prediction/data"):
for filename in filenames:
data_files.append(os.path.join(os.path.relpath(dirpath, 'seq2neo/function/immuno_Prediction'), filename))
setup(
name="Seq2Neo",
version="v2.1",
packages=find_packages(),
include_package_data=True,
package_data={
'seq2neo.function.immuno_Prediction': data_files,
},
entry_points={
"console_scripts": [
"seq2neo = seq2neo.main:main",
]
},
install_requires=[
'protobuf<3.20',
'biopython==1.77',
'keras==2.4.3',
'tensorflow==2.3.0',
'agfusion==1.252',
],
author=" Kaixuan Diao",
author_email="diaokx@shanghaitech.edu.cn",
description="Seq2Neo: a comprehensive pipeline for cancer neoantigen immunogenicity prediction",
keywords="neoantigen fusion immunogenicity prediction sequencing cancer",
long_description_content_type="text/markdown",
url="https://github.com/XSLiuLab/Seq2Neo",
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Academic Free License (AFL)",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
python_requires='>=3'
)