view setup.py @ 33:beedfa8eaa3f

Add grid lines to the graph. - Adds time gridlines on the hour and 15 minutes. - Adds temperature gridlines on 10, 5, and 1 degree intervals. - Increases chart range. - Changes from rounding temperature to floor()ing it.
author Paul Fisher <paul@pfish.zone>
date Sat, 12 Jun 2021 20:22:46 +0000
parents 9bc3687e1e5e
children 8d3f32455575
line wrap: on
line source

import setuptools

setuptools.setup(
    name='weather-server',
    version='0.1.3',
    packages=setuptools.find_packages(),
    python_requires='>=3.7',
    install_requires=[
        'attrs',
        'flask',
        'flup',
        'pymongo',
        'pytz',
    ],
    setup_requires=['wheel'],
    include_package_data=True,
)