mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
12 lines
336 B
Python
12 lines
336 B
Python
from ._version import version_info, __version__ # noqa: F401 imported but unused
|
|
|
|
|
|
def get_include(*args, **kwargs):
|
|
import os
|
|
try:
|
|
from pip import locations
|
|
return os.path.dirname(
|
|
locations.distutils_scheme('pybind11', *args, **kwargs)['headers'])
|
|
except ImportError:
|
|
return 'include'
|