forked from gersteinlab/starrpeaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 959 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
28
29
30
31
32
33
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='[email protected]',
license='GPL',
packages=['starrpeaker'],
install_requires=[
'numpy',
'scipy',
'pandas',
'statsmodels',
'pysam',
'pybedtools',
'pyBigWig'
],
scripts=[
'starrpeaker/1_makeBin.py',
'starrpeaker/2_procCov.py',
'starrpeaker/3_procBam.py',
'starrpeaker/4_callPeak.py',
'starrpeaker/calcFoldingEnergy.py'
],
entry_points = {
'console_scripts': [
'starrpeaker = starrpeaker.starrpeaker:main'
]
}
)