-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (38 loc) · 1.17 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from dispbind.version import __version__
setup(name='DISPbind',
version=__version__,
description='Disorder protein genomic binding analysis toolkit',
author='Rui Dong',
author_email='[email protected]',
url='https://github.com/rdong08/DISPbind',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='disorder protein',
packages=find_packages(),
install_requires=[
'requests',
'pysam>=0.8.4',
'pybedtools>=0.7.5',
'pandas>=1.0.5',
'matplotlib>=3.3.0',
'numpy>=1.10.0',
'docopt>=0.6.0',
'pyBigWig>=0.3.17',
'seaborn>=0.10.0',
'scipy',
],
entry_points={
'console_scripts': [
'DISPbind=dispbind.DISPbind:main'
],
},
)