summaryrefslogtreecommitdiff
path: root/bindings/setup.py
blob: 487949af4ea54f2a897bc30715bb377576ad4cea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, Extension
import pybind11
import numpy

ext_modules = [
    Extension(
        'galearn_pdm',
        ['galearn_pdm.cpp'],
        include_dirs=[
            pybind11.get_include(),
            numpy.get_include(),
        ],
        language='c++',
    ),
]

setup(
    name='galearn',
    version='0.0.1',
    ext_modules=ext_modules,
    zip_safe=False,
)