-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathversion.py
More file actions
30 lines (24 loc) · 728 Bytes
/
version.py
File metadata and controls
30 lines (24 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python3
# version.py - Application version information
"""
Application version information.
This file is used by both the build system and the update checker.
"""
# Version information
VERSION = "0.0.1"
VERSION_INFO = (0, 0, 1)
# Repository information
GITHUB_REPO = "ThreeHats/foundry-rest-api-midi-integration"
# Application metadata
APP_NAME = "MIDI-REST-Integration"
APP_DESCRIPTION = "MIDI to REST API Integration Tool"
APP_AUTHOR = "Noah"
def get_version():
"""Get the current version string."""
return VERSION
def get_version_info():
"""Get the current version as a tuple."""
return VERSION_INFO
def get_github_repo():
"""Get the GitHub repository name."""
return GITHUB_REPO