forked from gersteinlab/starrpeaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 756 Bytes
/
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
from setuptools import setup
setup(name='starrpeaker',
version='1.0',
description='STARRPeaker: STARR-seq peak caller',
keywords = "STARRPeaker, STARR-seq, peaks, bioinformatics",
url='http://github.com/gersteinlab/starrpeaker',
author='Donghoon Lee',
author_email='donghoon.lee@yale.edu',
license='GPL',
packages=['starrpeaker'],
install_requires=[
'numpy',
'scipy',
'pandas',
'statsmodels<=0.10.2',
'pysam',
'pybedtools',
'pyBigWig',
'scikit-learn'
],
entry_points = {
'console_scripts': [
'starrpeaker = starrpeaker.starrpeaker:main'
]
}
)