forked from jingxinfu/TIDEpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.21 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Author : Jingxin Fu <[email protected]>
# Date : 26/02/2020
# Last Modified Date: 26/02/2020
# Last Modified By : Jingxin Fu <[email protected]>
import setuptools
from tidepy import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="tidepy",
version=__version__,
author="Jingxin Fu",
author_email="[email protected]",
description="A computational method to predict immunotherapy response.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://jingxinfu.github.io/TIDEpy",
packages=setuptools.find_packages(),
scripts=['bin/tidepy'],
package_data={'tidepy': ["data/*.pkl"],},
include_package_data=True,
install_requires=['pandas<1.1','numpy'],
python_requires='>=3.4, <4',
keywords= ['Immunotherapy', 'ICB Prediction','Biomarkers',
'Bioinformatics', 'Computational Biology'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
)