-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 712 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 712 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
from setuptools import setup, find_packages
from setuptools.extension import Extension
from Cython.Build import cythonize
import numpy
setup(
packages=find_packages(),
ext_modules=cythonize(
[
Extension(
"phyde.data",
["phyde/data.pyx"],
include_dirs=[numpy.get_include()],
language="c++",
),
]
),
scripts=[
"scripts/run_hyde.py",
"scripts/run_hyde_mp.py",
"scripts/individual_hyde.py",
"scripts/individual_hyde_mp.py",
"scripts/bootstrap_hyde.py",
"scripts/bootstrap_hyde_mp.py",
"scripts/hyde_gui.py",
],
zip_safe=False,
)