forked from kipoi/kipoi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·62 lines (57 loc) · 1.41 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
requirements = [
"pyyaml",
"future",
"numpy",
"pandas",
"tqdm",
"related>=0.6.0",
"enum34",
"colorlog",
"jinja2",
"cookiecutter",
# sometimes required
"h5py",
"urllib3>=1.21.1", #,<1.23",
"tinydb"
]
test_requirements = [
"bumpversion",
"wheel",
"jedi",
"epc",
"pytest>=3.3.1",
"pytest-xdist", # running tests in parallel
"pytest-pep8", # see https://github.com/kipoi/kipoi/issues/91
"pytest-cov",
"coveralls",
"scikit-learn",
"cython",
"keras",
"tensorflow"
]
setup(
name='kipoi',
version='0.6.7',
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,
"vep": ["kipoi_veff"], # backcompatibily
},
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
)