1# Copyright (c) 2010-2024 openpyxl
2
3DEBUG = False
4
5from openpyxl.compat.numbers import NUMPY
6from openpyxl.xml import DEFUSEDXML, LXML
7from openpyxl.workbook import Workbook
8from openpyxl.reader.excel import load_workbook as open
9from openpyxl.reader.excel import load_workbook
10import openpyxl._constants as constants
11
12# Expose constants especially the version number
13
14__author__ = constants.__author__
15__author_email__ = constants.__author_email__
16__license__ = constants.__license__
17__maintainer_email__ = constants.__maintainer_email__
18__url__ = constants.__url__
19__version__ = constants.__version__