mirror of
https://github.com/benbusby/whoogle-search.git
synced 2026-01-19 18:35:58 -05:00
8 lines
157 B
Python
8 lines
157 B
Python
import os
|
|
|
|
optional_dev_tag = ''
|
|
if os.getenv('DEV_BUILD'):
|
|
optional_dev_tag = '.dev' + os.getenv('DEV_BUILD')
|
|
|
|
__version__ = '0.8.1' + optional_dev_tag
|