Path: blob/develop/src/sage_setup/autogen/flint_autogen.py
4055 views
r"""1Autogeneration of flint headers.2"""3#*****************************************************************************4# Copyright (C) 2023 Vincent Delecroix <[email protected]>5#6# This program is free software: you can redistribute it and/or modify7# it under the terms of the GNU General Public License as published by8# the Free Software Foundation, either version 2 of the License, or9# (at your option) any later version.10# http://www.gnu.org/licenses/11#*****************************************************************************1213import os14from flint import AUTOGEN_DIR, write_flint_cython_headers151617OUTPUT_DIR = os.path.realpath(os.path.join(AUTOGEN_DIR, os.path.pardir, os.path.pardir, os.path.pardir, 'sage', 'libs', 'flint'))18write_flint_cython_headers(OUTPUT_DIR, documentation=False)192021