whoogle-search/setup.py

9 lines
187 B
Python
Raw Normal View History

import os
2020-05-07 02:24:18 +03:00
import setuptools
optional_dev_tag = ''
if os.getenv('DEV_BUILD'):
optional_dev_tag = '.dev' + os.getenv('DEV_BUILD')
2022-11-23 21:43:42 +03:00
setuptools.setup(version='0.8.0' + optional_dev_tag)