forked from kipoi/kipoi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·74 lines (68 loc) · 1.88 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup, find_packages
from setuptools.command.install import install
# this will be overwritten by bumpversion
version = '0.8.6'
requirements = [
"pyyaml",
"numpy",
"pandas>=0.21.0",
"tqdm",
"related>=0.6.0",
"colorlog",
"jinja2",
"cookiecutter>=1.6.0",
# sometimes required
"h5py",
"urllib3>=1.21.1", # ,<1.23",
"tinydb",
"kipoi-utils>=0.7.5",
"kipoi-conda>=0.1.6",
"deprecation>=2.0.6",
"attrs<=21.4.0"
]
test_requirements = [
"bump2version",
"gitpython",
"wheel",
"jedi",
"epc",
"pyarrow",
"pytest>=3.3.1",
"pytest-xdist", # running tests in parallel
"pytest-pep8", # see https://github.com/kipoi/kipoi/issues/91
"pytest-cov",
"scikit-learn",
"cython",
"keras",
"tensorflow",
"zarr>=2.2.0", # test_161_writers.py
# "cyvcf2>=0.10.0", # test_20_cli_examples.py (and others) (fails on circle-ci)
"kipoi-interpret>=0.1.2", # test_42_kipoi_interpret.py
"concise>=0.6.6" # Necessary for tests under folder tests/legacy-keras. Does not work for python>=3.8
]
setup(
name='kipoi',
version=version,
description="Kipoi: model zoo for genomics",
author="Kipoi team",
author_email='[email protected]',
url='https://github.com/kipoi/kipoi',
long_description="Kipoi: model zoo for genomics. http://kipoi.org/",
packages=find_packages(),
install_requires=requirements,
extras_require={
"develop": test_requirements,
},
entry_points={'console_scripts': ['kipoi = kipoi.__main__:main']},
license="MIT license",
zip_safe=False,
keywords=["model zoo", "deep learning",
"computational biology", "bioinformatics", "genomics"],
test_suite='tests',
include_package_data=True,
tests_require=test_requirements,
)