-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (24 loc) · 788 Bytes
/
setup.py
File metadata and controls
36 lines (24 loc) · 788 Bytes
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
import os
from setuptools import setup, find_packages
setup(
name='rose2',
version='1.1.0',
description='ROSE2 python package',
long_description='PROGRAM TO STITCH TOGETHER REGIONS TO FORM ENHANCERS, MAP READ DENSITY TO STITCHED REGIONS,AND RANK ENHANCERS BY READ DENSITY TO DISCOVER SUPER-ENHANCERS',
url='https://github.com/linlabbcm/rose2',
download_url = 'https://github.com/linlabbcm/rose2/tarball/v1.1.0',
classifiers=[],
keywords=['bioinformatics','super-enhancers'],
packages=find_packages(),
package_data={
'rose2': ['annotation/*'],
},
install_requires=['numpy>=1.8.2'],
extras_require={},
scripts=['scripts/ROSE2_callSuper.R', 'scripts/ROSE2_stitchOpt.R'],
entry_points={
'console_scripts': [
'rose2=rose2:main',
]
},
)