1# Licensed under a 3-clause BSD style license - see LICENSE.rst
2
3from setuptools import Extension
4from os.path import join
5
6
7def get_extensions(build_type='release'):
8    VO_DIR = 'astropy/io/votable/src'
9
10    return [Extension(
11        "astropy.io.votable.tablewriter",
12        [join(VO_DIR, "tablewriter.c")],
13        include_dirs=[VO_DIR])]
14