mirror of
https://github.com/benbusby/whoogle-search.git
synced 2025-05-24 02:02:33 -04:00
* 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
|