Mercurial > personal > weatherlog
view setup.py @ 19:7117db65715e
Make weatherlog shutdown properly by handling SIGTERM.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Mon, 20 Jan 2020 23:36:23 -0500 |
parents | 9daa281d996b |
children | 92367b644e29 |
line wrap: on
line source
import setuptools setuptools.setup( name='weatherlog', version='0.2.2', packages=setuptools.find_packages(), python_requires='>=3.7', install_requires=[ 'adafruit-blinka', 'adafruit-circuitpython-dht', 'attrs', 'pymongo', 'pytz', 'requests', 'RPi.bme280', 'smbus2', 'toml', ], setup_requires=['wheel'], entry_points={ 'console_scripts': [ 'weatherlogd = weatherlog.daemon:main', ] } )