-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 852 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 852 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='rbp-maps',
version='0.1.4',
packages=['density', 'maps', 'plotter', 'preprocessing_scripts'],
url='',
license='',
include_package_data=True,
author='brianyee',
author_email='',
description='RNA-binding protein maps for region/splicing',
package_dir={
'density': 'maps/density',
'maps': 'maps',
'plotter': 'maps/plotter',
'preprocessing_scripts': 'preprocessing_scripts'
},
entry_points = {
'console_scripts': [
'bed2bigbed-eclip = preprocessing_scripts.bed2bigbed:main',
'plot_map = maps.plot_map:main',
'subset_jxc = preprocessing_scripts.subset_rmats_junctioncountonly:main',
]
}
)