-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
48 lines (44 loc) · 1.44 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
#!/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 < 8", "scikit-learn", "pandas", "tensorflow==2.3.0",
"numpy", "scipy" ,
"gensim==3.8.3",
"sklearn",
"mygene",
"h5py",
"progress",
]
needs_pytest = {"pytest", "test", "ptr"}.intersection(sys.argv)
pytest_runner = ["pytest < 6", "pytest-runner < 5"] if needs_pytest else []
setup(
name="deepsvp",
version="1.0.3",
description="DeepSVP: Integration of Genomics and Phenotypes forStructural Variant Prioritization using Deep Learning",
long_description=open(README).read(),
long_description_content_type="text/markdown",
author="Azza Althagafi",
author_email="[email protected]",
download_url="https://github.com/bio-ontology-research-group/deepsvp/archive/v1.0.3.tar.gz",
license="Apache 2.0",
packages=["deepsvp",],
package_data={"deepsvp": [],},
install_requires=install_requires,
extras_require={},
setup_requires=[] + pytest_runner,
tests_require=["pytest<5"],
entry_points={ "console_scripts": ["deepsvp=deepsvp.main:main",]},
zip_safe=True,
cmdclass={"egg_info": tagger},
python_requires=">3",
)