-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
executable file
·65 lines (61 loc) · 1.46 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
requirements = [
"kipoi>=0.5.5",
"pyfaidx",
"numpy",
"pandas",
"tqdm",
# "colorlog",
# "related>=0.6.0",
# sometimes required
# "h5py",
"gffutils",
"kipoi-utils>=0.1.1",
"kipoi-conda>=0.1.0",
"pyranges"
]
test_requirements = [
"bumpversion",
"wheel",
"epc",
"jedi",
"pytest>=3.3.1",
"pytest-xdist", # running tests in parallel
"pytest-pep8", # see https://github.com/kipoi/kipoi/issues/91
"pytest-mock",
"pytest-cov",
"coveralls",
"scikit-learn",
"cython",
"cyvcf2>=0.11.0",
"pyranges>=0.0.71",
# "keras",
# "tensorflow",
"pybedtools",
"pysam!=0.11"
# "concise"
]
setup(
name='kipoiseq',
version='0.7.1',
description="kipoiseq: sequence-based data-loaders for Kipoi",
author="Kipoi team",
author_email='[email protected]',
url='https://github.com/kipoi/kipoiseq',
long_description="kipoiseq: sequence-based data-loaders for Kipoi",
packages=find_packages(),
install_requires=requirements,
extras_require={
"develop": test_requirements,
},
license="MIT license",
zip_safe=False,
keywords=["model zoo", "deep learning",
"computational biology", "bioinformatics", "genomics"],
test_suite='tests',
include_package_data=False,
tests_require=test_requirements,
python_requires='>=3.6'
)