forked from YeoLab/clipper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (40 loc) · 1.48 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages, Extension
peaks = Extension("clipper.src.peaks", sources = ['clipper/src/peaksmodule.cc'],
#for debugging
# extra_compile_args = ['-O0']
)
with open("README") as file:
long_description = file.read()
setup(
name = "clipper",
long_description = long_description,
version = "0.1.1",
packages = find_packages(),
ext_modules = [peaks],
package_data = {
'' : ['*.lengths', '*.gz', '*.bam', '*.bai']
},
install_requires = ['setuptools',
'pysam >= 0.6',
'numpy >= 1.5.1 ',
# 'scipy >= 0.8.0',
'matplotlib >= 1.1.0',
'pp >= 1.6.2',
'pybedtools >= 0.5',
],
setup_requires = ["setuptools_git >= 0.3",],
entry_points = {
'console_scripts': [
'clipper = clipper.src.peakfinder:call_main',],
},
#metadata for upload to PyPI
author = "Michael Lovci and Gabriel Pratt",
author_email = "[email protected]",
description = "A set of scripts for calling peaks on CLIP-seq data",
license = "GPL2",
keywords = "CLIP-seq, peaks, bioinformatics",
url = "https://github.com/YeoLab/clipper",
#Other stuff I feel like including here
include_package_data = True,
#zip_safe = True #True I think
)