forked from shenlongchen/ImmuScope
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.34 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 1.34 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
from pathlib import Path
from setuptools import setup, find_packages
def readme():
readme_path = Path(__file__).parent / "README.md"
return readme_path.read_text(encoding="utf-8")
setup(
name="immuscope",
version="0.1.0",
description="ImmuScope: MHC-II epitope immunogenicity prediction",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/griffithlab/ImmuScope",
author="Shen Long-Chen, Zhang Yumeng, Wang Zhikang, Littler Dene R, Liu Yan, Tang Jinhui, Rossjohn Jamie, Yu Dong-Jun, Song Jiangning",
license="GPL-3.0-only",
packages=find_packages(exclude=("tests*", "weights*", "configs*")),
include_package_data=True,
package_data={
"ImmuScope": [
"pseudosequence.pvac.dat",
],
},
python_requires=">=3.9",
install_requires=[
"torch>=1.12",
"ruamel.yaml>=0.17.21"
],
project_urls={
"Upstream": "https://github.com/shenlongchen/ImmuScope",
"Source": "https://github.com/griffithlab/ImmuScope",
"Issues": "https://github.com/griffithlab/ImmuScope/issues",
},
entry_points={
"console_scripts": [
"immuscope-wrapper=ImmuScope.immuscope_wrapper:main",
"immuscope-download-weights=ImmuScope.download_weights:main",
]
},
zip_safe=False
)