Mercurial > personal > weatherlog
view setup.py @ 10:b1657de734d5
Add HTTPWriter, which actually writes over HTTP.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Sun, 29 Sep 2019 01:18:58 -0400 |
parents | d8f38d992387 |
children | 4c81182eaa6b |
line wrap: on
line source
import setuptools setuptools.setup( name='weatherlog', version='0.0.1', packages=setuptools.find_packages(), python_requires='>=3.7', install_requires=[ 'adafruit-blinka', 'adafruit-circuitpython-dht', 'attrs', 'pymongo', 'pytz', 'requests', ], setup_requires=['wheel'], )