[go: up one dir, main page]

File: __init__.py

package info (click to toggle)
cppy 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 184 kB
  • sloc: cpp: 390; ansic: 62; python: 60; makefile: 13
file content (21 lines) | stat: -rw-r--r-- 621 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#------------------------------------------------------------------------------
# Copyright (c) 2014-2020, Nucleic
#
# Distributed under the terms of the BSD 3-Clause License.
#
# The full license is in the file LICENSE, distributed with this software.
#------------------------------------------------------------------------------
__major_version__ = 1
__minor_version__ = 1
__patch_version__ = 0


__version_info__ = (__major_version__, __minor_version__, __patch_version__)


__version__ = '%s.%s.%s' % __version_info__


def get_include():
    import os
    return os.path.join(os.path.dirname(__file__), 'include')