19 lines
725 B
Python
Executable File
19 lines
725 B
Python
Executable File
#! /usr/bin/env python
|
|
###########################################################################
|
|
#
|
|
# This program is part of Zenoss Core, an open source monitoring platform.
|
|
# Copyright (C) 2008-2010, Zenoss Inc.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License version 2, or (at your
|
|
# option) any later version, as published by the Free Software Foundation.
|
|
#
|
|
# For complete information please visit: http://www.zenoss.com/oss/
|
|
#
|
|
###########################################################################
|
|
import sys
|
|
import os
|
|
version = '.'.join(map(str, sys.version_info[:2]))
|
|
print(os.path.join(sys.prefix, 'include', 'python' + version))
|
|
|