forked from ulelab/imaps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
67 lines (64 loc) · 1.91 KB
/
setup.py
File metadata and controls
67 lines (64 loc) · 1.91 KB
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
import os.path
import setuptools
# Get the long description from README.
with open('README.rst', 'r') as fh:
long_description = fh.read()
# Get package metadata from '__about__.py' file.
about = {}
base_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(base_dir, 'imaps', '__about__.py'), 'r') as fh:
exec(fh.read(), about)
setuptools.setup(
name=about['__title__'],
# use_scm_version=True,
version=about['__version__'],
description=about['__summary__'],
long_description=long_description,
long_description_content_type='text/x-rst',
author=about['__author__'],
author_email=about['__email__'],
url=about['__url__'],
license=about['__license__'],
# Exclude tests from built/installed package.
packages=setuptools.find_packages(
exclude=['*.tests', '*.tests.*']
),
python_requires='>=3.6, <3.8',
install_requires=[
'matplotlib',
'numpy',
'pandas==0.24.2',
'plumbum',
'pybedtools',
'scipy',
'seaborn',
'sklearn',
'resdk>=11.0.1',
],
extras_require={
'docs': ['sphinx_rtd_theme'],
'package': ['twine', 'wheel'],
'test': [
'check-manifest',
'isort',
'mock==1.3.0',
'pycodestyle~=2.5.0',
'pydocstyle~=3.0.0',
'pylint~=2.3.1',
'pytest-cov',
'setuptools_scm',
'twine',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='imaps CLIP iCLIP bioinformatics protein',
)