mirror of
https://github.com/benbusby/whoogle-search.git
synced 2026-06-07 23:35:19 -04:00
08b16f5a0c
* Sync setup.cfg with requirements.txt * Include tests in PyPI tarballs And exclude them from setuptools * Set version number only once Switch to PEP517 standard (pyproject.toml) for builds
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.0' + optional_dev_tag
|