-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (24 loc) · 769 Bytes
/
setup.py
File metadata and controls
37 lines (24 loc) · 769 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
37
import os
from setuptools import setup, find_packages
setup(
name='bamplot',
version='0.8.0',
description='bamplot python package',
long_description='program to make plots of bam read density at specific loci',
url='https://github.com/linlabbcm/bamplot',
download_url = 'https://github.com/linlabbcm/bamplot/tarball/v0.8.0',
classifiers=[],
keywords=['bioinformatics','bam','SEQ','plotting'],
packages=find_packages(),
package_data={
'bamplot': ['annotation/*'],
},
install_requires=[],
extras_require={},
scripts=['scripts/bamplot_plotter.R'],
entry_points={
'console_scripts': [
'bamplot=bamplot:main',
]
},
)