-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·58 lines (52 loc) · 1.35 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = [
"cyvcf2",
"concise",
"pyvcf",
"dask",
"joblib",
"deepdish",
"dask",
"toolz",
"cloudpickle",
"kipoi",
"scikit-learn",
"openpyxl",
]
test_requirements = [
"pytest",
"virtualenv",
]
# TODO - require conda to be installed? - to create custom environments
setup(
name='m_kipoi',
version='0.0.1',
description="Kipoi research code command-line tool",
author="Kipoi team",
author_email='...',
url='https://github.com/kipoi/research-code',
long_description=readme,
packages=find_packages(),
install_requires=requirements,
extras_require={
"develop": ["bumpversion",
"wheel",
"jedi",
"epc",
"pytest",
"pytest-pep8",
"pytest-cov"],
},
entry_points={'console_scripts': ['m_kipoi = m_kipoi.__main__:main']},
license="MIT license",
zip_safe=False,
keywords=["model zoo", "deep learning",
"computational biology", "bioinformatics", "genomics"],
test_suite='tests',
package_data={'m_kipoi': ['logging.conf']},
tests_require=test_requirements
)