-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·48 lines (44 loc) · 1.11 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 python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
requirements = [
"pandas>=0.21.0",
"tqdm",
"attrs",
"related",
"tqdm",
"numpy",
"PyYAML>=5.1.0",
#"psutil"
]
test_requirements = [
"bumpversion",
"wheel",
"pytest>=3.3.1",
"pytest-xdist", # running tests in parallel
"pytest-pep8", # see https://github.com/kipoi/kipoi/issues/91
"pytest-cov",
"coveralls",
]
desc = "kipoi-utils: utils used in various packages related to kipoi"
setup(
name='kipoi_utils',
version='0.7.7',
description=desc,
author="Kipoi team",
author_email='[email protected]',
url='https://github.com/kipoi/kipoi-utils',
long_description=desc,
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
)