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-04-27 01:49:30 +03:00
setuptools.setup(version='0.7.2' + optional_dev_tag)