-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (45 loc) · 1.4 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
#!/usr/bin/env python3
import os
import sys
import setuptools.command.egg_info as egg_info_cmd
from setuptools import setup
SETUP_DIR = os.path.dirname(__file__)
README = os.path.join(SETUP_DIR, "README.md")
try:
import gittaggers
tagger = gittaggers.EggInfoFromGit
except ImportError:
tagger = egg_info_cmd.egg_info
install_requires = [
"click",
"mowl-borg",
"progress",
"scipy==1.7.0",
]
needs_pytest = {"pytest", "test", "ptr"}.intersection(sys.argv)
pytest_runner = ["pytest < 6", "pytest-runner < 5"] if needs_pytest else []
setup(
name="embedpvp",
version="1.0.5",
description="EmbedPVP: Integration of Genomics and Phenotypes for Variant Prioritization using Deep Learning",
long_description=open(README).read(),
long_description_content_type="text/markdown",
author="Azza Althagafi",
author_email="azza.althagafi@kaust.edu.sa",
download_url="https://github.com/bio-ontology-research-group/embedpvp/archive/v1.0.5.tar.gz",
license="Apache 2.0",
packages=["embedpvp",],
package_data={"embedpvp": ["ELEmModule.py","get_dis.py"],},
install_requires=install_requires,
extras_require={},
setup_requires=[] + pytest_runner,
tests_require=["pytest<5"],
entry_points={
"console_scripts": [
"embedpvp=embedpvp.main:main",
]
},
zip_safe=True,
cmdclass={"egg_info": tagger},
python_requires=">3.9",
)