File: version.py

package info (click to toggle)
python-gsd 4.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,020 kB
  • sloc: python: 3,252; ansic: 1,965; cpp: 129; makefile: 14
file content (16 lines) | stat: -rw-r--r-- 434 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright (c) 2016-2025 The Regents of the University of Michigan
# Part of GSD, released under the BSD 2-Clause License.

"""Define the current version of the gsd package.

Attributes:
    version (str): GSD software version number. This is the version number
                   of the software package as a whole,
                   not the file layer version it reads/writes.
"""

version = '4.0.0'

__all__ = [
    'version',
]