view setup.py @ 14:c01f9929ae38

Make logger and HTTP writer more general and resilient. This makes the logger and HTTP writer more general, by removing any dependency upon the exact data type they are writing. They can now handle any type of BSON-serializable dict, and track what they have sent by keeping track of the last *byte*, not the last timestamp.
author Paul Fisher <paul@pfish.zone>
date Tue, 15 Oct 2019 22:40:24 -0400
parents 4c81182eaa6b
children b5625b531d2d
line wrap: on
line source

import setuptools

setuptools.setup(
    name='weatherlog',
    version='0.1.0',
    packages=setuptools.find_packages(),
    python_requires='>=3.7',
    install_requires=[
        'adafruit-blinka',
        'adafruit-circuitpython-dht',
        'attrs',
        'pymongo',
        'pytz',
        'requests',
    ],
    setup_requires=['wheel'],
)