-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 788 Bytes
/
setup.py
File metadata and controls
29 lines (28 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
import numpy
from Cython.Build import cythonize
from setuptools import setup
from setuptools.extension import Extension
setup(
name="bigwig_loader",
ext_modules=cythonize(
[
Extension(
"bigwig_loader.merge_intervals",
sources=["bigwig_loader/merge_intervals.pyx"],
include_dirs=[
numpy.get_include(),
],
library_dirs=[],
),
Extension(
"bigwig_loader.subtract_intervals",
sources=["bigwig_loader/subtract_intervals.pyx"],
include_dirs=[
numpy.get_include(),
],
library_dirs=[],
),
],
annotate=True,
),
)