-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 822 Bytes
/
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
from setuptools import setup, Extension
from Cython.Build import cythonize
import numpy
setup(
name="crossing_tree",
version="0.9.3",
description="""A library for experimentation with crossing trees """
"""for analysis of self-similarity.""",
license="MIT License",
author="Ivan Nazarov",
author_email="[email protected]",
ext_modules=cythonize([
Extension(
"crossing_tree._crossing",
["crossing_tree/_crossing.pyx"],
include_dirs=[numpy.get_include()],
extra_compile_args=["-std=c99", "-O3", "-Ofast"]
)
]),
packages=[
"crossing_tree",
"crossing_tree.processes"
],
install_requires=[
"numpy>=1.11.1",
"pyfftw>=0.10.4",
"cython>=0.24.1"
]
)